-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1011 Bytes
/
index.html
File metadata and controls
38 lines (32 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="style.css" rel="stylesheet" />
<title>Learning HTML & CSS</title>
</head>
<body>
<h1>JavaScript is fun, but so is HTML & CSS!</h1>
<p class="first">
You can learn JavaScript without HTML and CSS, but for DOM manipulation
it's useful to have some basic ideas of HTML & CSS. You can learn more
about it
<a href="https://www.udemy.com/user/jonasschmedtmann/">on Udemy</a>.
</p>
<h2>Another heading</h2>
<p class="second">
Just another paragraph
</p>
<img
id="course-image"
src="https://img-a.udemycdn.com/course/480x270/437398_46c3_9.jpg"
/>
<form id="your-name">
<h2>Your name here</h2>
<p class="first">Please fill in this form :)</p>
<input type="text" placeholder="Your name" />
<button>OK!</button>
</form>
</body>
</html>