-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathindex.html
44 lines (41 loc) · 1021 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ritvik</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<h1>Ritvik Prasad</h1>
</div>
<div>
<img src="photo.jpg" alt="image" id="photo">
</div>
<div>
<h2 id="artists">Favorite Music Artists</h2>
<ul>
<li>Maroon 5</li>
<li>Dua Lipa</li>
<li>Harry Styles</li>
<li>One Republic</li>
<li>Charlie Puth</li>
</ul>
</div>
<div>
<h2 id="films">Favorite Films</h2>
<ol>
<li>Minions</li>
<li>Despicable Me</li>
<li>Battleship</li>
<li>Tomorrow War</li>
<li>Iron Man</li>
</ol>
</div>
<div>
<a href="https://www.meta.com/">My Profile</a>
</div>
</body>
</html>