-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (116 loc) · 3.78 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Put Your Brain in a Jar</title>
<link rel="shortcut icon" type="image/x-icon" href="./_app/assets/favicon-focus.png">
<link rel="stylesheet" href="/_app/css/main.css">
<script type="module" src="/_app/js/main.js"></script>
</head>
<body>
<header class="navigation grid">
<div class="navigation__box">
<a href="#home"><div class="navigation__box--logo"></div></a>
<nav class="navigation__box--items">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#faq">F.A.Q</a></li>
<li><a href="#testimonials">Reviews</a></li>
</ul>
</nav>
<nav class="navigation__box--icon">
<ul>
<li>
<a href="#about">
<span class="material-symbols-outlined">
info
</span>
</a>
</li>
<li>
<a href="#faq">
<span class="material-symbols-outlined">
contact_support
</span>
</a>
</li>
<li>
<a href="#testimonials">
<span class="material-symbols-outlined">
record_voice_over
</span>
</a>
</li>
<li>
<a href="/shop/index.html">
<span class="material-symbols-outlined">
shopping_cart
</span>
</a>
</li>
</ul>
</nav>
<a href="/shop/index.html" class="navigation__box--button">
Buy a jar
<i class="material-symbols-outlined">
start
</i>
</a>
</div>
</header>
<div class="content">
<section id="home" class="hero__background">
<h1 class="yourbrain">YOUR BRAIN</h1>
<h1 class="inajar">IN A JAR.</h1>
</section>
<section id="about" class="about__background">
<div class="about">
<div class="about__textbox">
<h1 class="about__textbox--heading1">Welcome to Brain in a Jar, the place where we believe that humans don't need their brains anymore.
Just kidding! (Well, kind of.) </h1>
<br>
<h2 class="about__textbox--heading2">Here at Brain in a Jar, we believe in pushing the boundaries of creativity and imagination, and we
do it by exploring the fascinating world of neuroscience. We're not just another brain in a jar, but
a team of curious individuals who love to learn and share knowledge about the incredible power of the
human brain. <br>
<br> Whether you're a curious explorer, a student, or just looking for some brainy fun, we've got you covered with a range of exciting and educational content. So come join us on our mission to celebrate the beauty and complexity of the brain, one jar at a time.</h2>
</div>
</div>
</section>
<section id="faq" class="faq__background">
<div class="faq">
<div class="faq__list">
</div>
</div>
</section>
<section id="testimonials" class="testimonials__background">
<div class="testimonials">
<div class="testimonials__container"></div>
<div class="testimonial__navigation">
<button class="testimonial__previous">
<span class="material-symbols-outlined">
arrow_back_ios
</span>
</button>
<button class="testimonial__next">
<span class="material-symbols-outlined">
arrow_forward_ios
</span>
</button>
</div>
</div>
</section>
<section class="braincation__background">
<footer>
<div class="footer">
<a class="footer__logo-git" href="https://github.com/0yvz/Brain-in-a-Jar"></a>
<div class="footer__logo-linked"></div>
<div class="footer__contact">
<h3 class="footer__contact--heading">Kandidatnummer 4011</h3>
</div>
</div>
</section>
</footer>
</body>
</html>