-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (87 loc) · 3.27 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tripgram | Travel Profile</title>
<link rel="stylesheet" href="styles/index.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="bg-surface-color">
<nav class="container">
<a href="#" id="logo">
<img src="assets/Logo.svg" alt="Brand logo">
</a>
<ul id="primary-menu">
<li>
<a href="#">
<img src="assets/icons/MagnifyingGlass.svg" alt="Magnifying Glass Icon">
</a>
</li>
<li><a href="#">Explore</a></li>
<li><a href="#"> My trips</a></li>
<li>
<a href="#">
<img src="assets/profile-pic.png" alt="Photo of Heloise">
</a>
</li>
</ul>
</nav>
<header>
<div class="container">
<div id="profile">
<img src="assets/profile-pic.png" alt="Photo of Heloise">
<div>
<h1> Heloise Lui</h1>
<p>
Lover of travel, culture and gastronomy. 🌍✈️ <br />
Here I share the stories recorded in each click, <br />
exploring fascinating corners of our planet. 🏙️📸
</p>
</div>
</div>
<ul id="info">
<li>
<img src="assets/icons/MapPin.svg" alt=" Map pin icon">
<span>Curitiba, Brazil</span>
</li>
<li>
<img src="assets/icons/MapPin.svg" alt=" Map pin icon">
<span>12 countries</span>
</li>
<li>
<img src="assets/icons/Image.svg" alt=" Image icon">
<span>242 photos</span>
</li>
</ul>
</div>
</header>
</div>
<main class="container">
<img src="assets/images/Image 01.png" alt="Image of a landscape">
<img src="assets/images/Image 02.png" alt="Image of a landscape">
<img src="assets/images/Image 03.png" alt="Image of a landscape">
<img src="assets/images/Image 04.png" alt="Image of a landscape">
<img src="assets/images/Image 05.png" alt="Image of a landscape">
<img src="assets/images/Image 06.png" alt="Image of a landscape">
<img src="assets/images/Image 07.png" alt="Image of a landscape">
<img src="assets/images/Image 08.png" alt="Image of a landscape">
<img src="assets/images/Image 09.png" alt="Image of a landscape">
<img src="assets/images/Image 10.png" alt="Image of a landscape">
<img src="assets/images/Image 11.png" alt="Image of a landscape">
<img src="assets/images/Image 12.png" alt="Image of a landscape">
<img src="assets/images/Image 13.png" alt="Image of a landscape">
<img src="assets/images/Image 14.png" alt="Image of a landscape">
<img src="assets/images/Image 15.png" alt="Image of a landscape">
<img src="assets/images/Image 16.png" alt="Image of a landscape">
</main>
<footer class="container">
<span>Tripgram © 2024</span>
<span>Terms and conditions</span>
<span>Privacy Policy</span>
</footer>
</body>
</html>