-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StackOverflow Lite</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div id="preloader"></div>
<nav>
<div class="logo">
<a href="index.html">
<img src="./images/logo.png" alt="StackOverflow-lite">
</a>
</div>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="./pages/about.html">About</a></li>
<li><a href="./pages/questions.html">Questions</a></li>
</ul>
</nav>
<div class="hero">
<div class="txt-content">
<h1>Great minds discuss ideas, what better way to do that than sharing your knowledge.</h1><br>
<p> Stack Overflow Lite is a public platform building the definitive collection of coding questions &
answers. A community-based space to ask questions, find and contribute answers to technical challenges.
There is no shame in not knowing something. The shame is not willing to learn.</p>
<div class="actions">
<a href="./pages/sign-up.html"><button class="signup">Sign Up</button></a>
<a href="./pages/login.html"><button class="login">Login</button></a>
</div>
</div>
<div class="img">
<img src="./images/home-img.png" alt="picture of someone asking and getting answers for a question">
</div>
</div>
<script>
const loader = document.getElementById("preloader");
window.addEventListener("load", () => {
loader.style.display = "none";
})</script>
</body>
</html>