-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (68 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>Visit Paris</title>
</head>
<body>
<!-- HERO SECTION -->
<div id="hero-section">
<video id="background-video" autoplay loop muted poster="vid/paris_-_40645 (720p).mp4">
<source src="vid/paris_-_40645 (720p).mp4" type="video/mp4">
<a href="vid/paris_-_40645 (720p).mp4">Download video</a>
</video>
<h1>Visit Paris 🇫🇷</h1>
<h2>But maybe not during the Olympics? It will be <em>overcrowded and overpriced!</em></h2>
</div>
<!-- ACTIVITIES SECTION -->
<div id="activities-section">
<h3>The best things to do in Paris - <em>by night</em></h3>
<div id="top-activities">
<div class="activity">
<img class="activity-img" src="img/paris-night.jpg" alt="A night scene of people sitting outside at a brasserie in a parisian street and enjoying some drinks">
<h4>Paris by night</h4>
<p>Parisian streets come alive at night, buzzing with vibrant energy, music, and people enjoying the city's rich nightlife.</p>
</div>
<div class="activity">
<img class="activity-img" src="img/paris-club.jpg" alt="Crowd enjoying the music in a Parisian club">
<h4>The best clubs</h4>
<p>Paris boasts a dazzling array of clubs, from legendary venues like Rex Club to trendy spots like Concrete, catering to all music tastes.</p>
</div>
<div class="activity">
<img class="activity-img" src="img/pointephemere3.jpg" alt="Many people at Point Ephémère, a famous parisian venue for underground music and events">
<h4>Le Point Ephémère</h4>
<p>Le Point Ephemere is a hip cultural hub in Paris, featuring eclectic live music, art exhibitions, and a lively waterfront terrace.</p>
</div>
</div>
</div>
<!-- GUIDE SECTION -->
<div id="guide-section">
<div id="card">
<img id="me-img" src="img/oim.jpg" alt="A silly portrait of your guide in Paris">
<div id="card-content">
<h5 id="guide">Your guide: François-Xavier</h5>
<p>I'm a Product Designer currently learning frontend devlopement with Scrimba and The Odin Project. I love wandering in Paris at night and going to music events. Feel free to reach out 🤙</p>
<ul id="socials">
<li><a href="https://www.linkedin.com/in/francoisxavierdecarpentrie/" target="_blank"><img src="img/linkedin.svg" alt="LinkedIn pictogram"> LinkedIn</a></li>
<li><a href="https://f-xd.me" target="_blank"><img src="img/link.svg" alt="Link pictogram"> Website</a></li>
</ul>
</div>
</div>
</div>
<!-- FOOTER -->
<div id="footer">
<div id="container">
<div class="list">
<div class="item">
<span class="item-txt">MADE WITH 💙 IN PARIS</span>
</div>
</div>
</div>
</div>
</body>
</html>