-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (78 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>minesa hub</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" async></script>
</head>
<body>
<div class="snowfall" aria-hidden="true"></div>
<header>
<!-- Logo -->
<img
class="springish"
src="./assets/vectors/minesa-logo.svg"
alt="Minesa's Logo"
/>
<!-- Dynamic Notification -->
<div tabindex="-1" class="dynamic-header springish">
<span>Navigation</span>
<ul class="content">
<a href="#team"><li>Teams ✦</li></a>
<a href="#projects"><li>Projects</li></a>
</ul>
<div
class="circle"
style="border-color: var(--secondary-color)"
></div>
</div>
<!-- Mail Icon -->
<a
href="mailto:[email protected]?subject=I%20Want%20to%20Work%20Together"
rel="noopener noreferrer"
>
<img
class="springish"
src="./assets/vectors/contact.svg"
alt=""
/>
</a>
</header>
<main>
<section id="team">
<p>
We’re just a
<u style="text-underline-offset: 5px">click away.</u>
</p>
<h1><span>Here, there,</span> and <span>everywhere!</span></h1>
<a href="./pages/team/mica.html" class="image-circle circle1">
<img src="./assets/images/mica_face.jpeg" alt="Mica" />
</a>
<a href="./pages/team/neo.html" class="image-circle circle2">
<img src="./assets/images/neo_face.jpeg" alt="Neo" />
</a>
<a href="./pages/team/saku.html" class="image-circle circle3">
<img src="./assets/images/saku_face.jpeg" alt="Saku" />
</a>
</section>
<section id="projects">
<h2>Projects</h2>
<p>We will showcase our projects soon.</p>
<div>
<a
class="project"
id="kaeru"
href="./pages/projects/kaeru.html"
>
<p>Most powerful and functional ticket app.</p>
</a>
<div class="project" id="ita">
<p>Your chat app.</p>
</div>
</div>
</section>
</main>
</body>
</html>