-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 1.04 KB
/
index.html
File metadata and controls
58 lines (58 loc) · 1.04 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>My profile</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/style-logo.css">
</head>
<body>
<header>
<div class="logo">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="container">
<div class="screen">
<video src="img/video-venezuela.mp4" autoplay loop muted></video>
</div>
<span class="person">
Erick Gomez
<div class="square">
<img src="img/icon-person.svg">
</div>
</span>
</div>
</header>
<footer>
<div>I Like</div>
<ul>
<li>
<div>
<span>To Camp</span>
<img src="img/icon-tent.svg">
</div>
</li>
<li>
<div>
<span>Movies/Series</span>
<img src="img/icon-popcorn.svg">
</div>
</li>
<li>
<div>
<span>take photos</span>
<img src="img/icon-photo-camera.svg">
</div>
</li>
<li>
<div>
<span>Jazz</span>
<img src="img/icon-trumpet.svg">
</div>
</li>
</ul>
</footer>
</body>
</html>