-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 946 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Homework Website!</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<ul class="navbar">
<li><a href="tasks.html">Task</a></li>
<li><a href="shopping.html">Shopping</a></li>
<li><a href="https://www.meteor.com">Favorite Website</a></li>
</ul>
<h1>My HomeWork Website!</h1>
<p>This is My homeWork website</p>
<h2>About me!</h2>
<p class="differentPara">I play Ice Hockey with Efrei</p>
<p>I like pasta</p>
<p>My favorite football club is Fc Nantes!</p>
<p class="differentPara">I prefer python language above all!</p>
<img id="hockey" src="hockey.jpg" />
<h3>Top 3 favorites games:</h3>
<ol>
<li>Counter Strike</li>
<li>M.E.T.R.O</li>
<li>Diablo 2</li>
</ol>
</body>
</html>