-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (96 loc) · 3.22 KB
/
Copy pathindex.html
File metadata and controls
101 lines (96 loc) · 3.22 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SIT - Science In Tanzania</title>
<!-- fonts links -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Sedgwick+Ave+Display&family=Varela+Round&display=swap"
rel="stylesheet"
/>
<!-- font awesome links -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- favicon links -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="manifest" href="favicon/site.webmanifest" />
<!-- css file links -->
<link rel="stylesheet" href="assets/css/master.css" />
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="#"><img src="assets/media/SIT.png" alt="sit logo" /></a>
</div>
<ul>
<li><a href="#">Science, Tech, Math</a></li>
<li><a href="#">Biological Science</a></li>
<li><a href="#">Chemistry</a></li>
<li><a href="#">Physical Geography</a></li>
<li><a href="#">Psychology</a></li>
<li><a href="#">About Us</a></li>
</ul>
<div class="search-button">
<a href="#"><i class="fa fa-search"></i></a>
</div>
</nav>
<main>
<section id="hero">
<div class="_left">
<h1>Science In Tanzania</h1>
<span>Brains High as a Twiga</span>
<p>
Become a lifelong learner among many Tanzanian students in schools
all over the country having a common interest in science.
</p>
<form action="#">
<input type="email" placeholder="Enter your email to register" />
<button>Register</button>
</form>
<div class="socials">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fab fa-tiktok"></i></a>
<a href="#"><i class="fab fa-x-twitter"></i></a>
</div>
</div>
<div class="_right">
<h1>SIT</h1>
<div class="image">
<img src="assets/media/formula.png" alt="Young Scientist" />
</div>
<p>
Curious about <span>stars</span>, <span>robots</span>, or Tanzania’s
<span>wildlife</span>? Which science fact excites you most? Ready to
explore <span>technology</span> and <span>discovery</span>?
</p>
</div>
</section>
</main>
<script src="assets/js/app.js"></script>
</body>
</html>