-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (46 loc) · 2.19 KB
/
index.html
File metadata and controls
63 lines (46 loc) · 2.19 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
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Coming Soon — Life & Speed</title>
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<video class="bg-video" playsinline autoplay muted loop poster="assets/img/bg-fallback.jpg">
<source src="assets/mp4/bg.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div class="masthead">
<div class="masthead-inner">
<div class="left-panel">
<div class="life-script" aria-label="Life script">
<p>Life moves fast.</p>
<p>In our rush to chase what’s next,</p>
<p>we often forget what truly matters.</p>
<p>Slow down. Feel the moments.</p>
<p>Because not everything worth having can be rushed.</p>
</div>
<div class="contact-section">
<input class="email-input" type="email" id="emailInput" placeholder="Enter your email..." aria-label="Email address">
<button class="contact-btn" id="contactButton">Contact Me</button>
</div>
</div>
</div>
</div>
<div class="social-rail" aria-hidden="false">
<a class="social-link" id="linkedin" href="#" target="_blank" title="LinkedIn (replace link)">
<div class="social-circle"><i class="fab fa-linkedin-in"></i></div>
</a>
<a class="social-link" id="facebook" href="#" target="_blank" title="Facebook (replace link)">
<div class="social-circle"><i class="fab fa-facebook-f"></i></div>
</a>
<a class="social-link" id="instagram" href="#" target="_blank" title="Instagram (replace link)">
<div class="social-circle"><i class="fab fa-instagram"></i></div>
</a>
</div>
<script src="js/effects.js"></script>
</body>
</html>