-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="en" http-equiv="content-language">
<!-- SEO - Description -->
<title>Misei | David Fernández</title>
<meta content="David Fernández Esteban - Portfolio and contact details." name="description">
<meta content="David Fernández Esteban" name="author">
<meta content="David Fernández Esteban, portfolio, contact, engineering, manager" name="keywords">
<!-- Style -->
<link href="./asset/favicon.ico" rel="icon" type="image/x-icon">
<link href="./css/index.css" rel="stylesheet">
<link href="./css/ui-titles.css" rel="stylesheet">
<link href="./css/ui-contact.css" rel="stylesheet">
<link href="./css/scene.css" rel="stylesheet">
<!-- Three.js -->
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script type="module" src="js/init.js"></script>
<script type="module" src="js/sceneSetup.js"></script>
<script type="module" src="js/object/objectSetup.js"></script>
<script type="module" src="js/object/cardSetup.js"></script>
<script type="module" src="js/object/backgroundSetup.js"></script>
<script type="module" src="js/animation/animation.js"></script>
<script type="module" src="js/animation/cardAnimation.js"></script>
<script type="module" src="js/animation/starAnimation.js"></script>
<!-- Fonts & Icons -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<!-- Tracking -->
<script data-website-id="3f45e345-68da-45a8-9b64-7c937a6be09c" defer
src="https://analytics.eu.umami.is/script.js"></script>
</head>
<body>
<div id="scene-container">
<div class="drag-title hide">Hi!</div>
<div class="drag-contact hide">
<button class="inverse-btn" id="contact-button">Contact</button>
<button class="inverse-btn" id="linkedin-button">LinkedIn</button>
<button class="inverse-btn" id="github-button">Github</button>
</div>
<div class="drag-subtitle">SWIPE TO ROTATE | PRESS TO START</div>
</div>
</body>
</html>