-
Notifications
You must be signed in to change notification settings - Fork 17.5k
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.05 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Learning HTML & CSS</title>
<link href="style1.css" rel="stylesheet" />
</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
<a
href="https://www.championsoccerschool.com/about/staff/daniel-bekenstein/"
>about me</a
>.
</p>
<h2>Another Heading</h2>
<p class="second">Just another paragraph</p>
<img
id="dan-image"
src="https://i0.wp.com/www.championsoccerschool.com/wp-content/uploads/2016/03/beks.jpg?resize=705%2C435&ssl=1"
/>
<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>