-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (53 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nelly Mafi - Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css">
<!-- Set favicon to the same image as the logo -->
<link rel="icon" href="assets/images/logo.png" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js"></script>
</head>
<body data-bg="light">
<div class="wrapper">
<div id="header">
<div class="logo-container">
<img src="assets/images/logo.png" alt="Logo" class="logo">
<span class="site-name">NELLY MAFI</span>
</div>
<div id="topnav">
<ul>
<li><a href="#"><span class="text">ABOUT</span></a></li>
</ul>
</div>
</div>
<div id="intro" class="section">
<div class="video-container">
<video autoplay muted loop>
<source src="assets/videos/lotus.mp4" type="video/mp4">
</video>
</div>
<div class="content-container">
<div class="intro-text">
<h2 id="introText">Nelly Mafi</h2>
</div>
</div>
</div>
<div class="white-spacer"></div>
<div id="message" class="section">
<h2 id="welcomeText">Welcome to the Future</h2>
</div>
<div class="spacer"></div>
<div class="pin">
<canvas id="hero-lightpass"></canvas>
</div>
<div class="spacer"></div>
<script src="script.js"></script>
</div>
</body>
</html>