forked from cmda-minor-web/web-app-from-scratch-2223
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.59 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
<!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>Quotes</title>
<link rel="stylesheet" href="qt.css">
<script type="module" src="main.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
</ul>
</nav>
</header>
<main>
<img src="img/notepad.svg" alt="een kladblokje">
<section id="home" class="page-content">
<div class="js-empty">
<p>Klik op de button!</p>
</div>
<div class="loader js-loader hide">
<p>Loading!!</p>
</div>
<div class="js-quote-content hide">
<h1></h1>
<h2></h2>
</div>
<button class="js-random-btn"></button>
</section>
<section id="about" class="page-content hide">
<h3>About</h3>
<p> "As a student front-end developer i want to look at affirmative web design quotes, so that imposter syndrome doesn't hit me hard."
Is the userstory i chose to pursue for this project.
I myself have experienced imposter syndrome and if i can help a struggling student out with imposter syndrome, that would mean a lot to me.
</p>
</main>
</body>
</html>