-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (68 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Affirmations board</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<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=Croissant+One&family=Mooli&display=swap" rel="stylesheet">
</head>
<body>
<div class="center-wrapper">
<header>
<div class="content-wrapper">
<h1 id="top">Affirmations board</h1>
</div>
</header>
<main>
<div class="content-wrapper">
<div class="affirmation-block">
<p class="affirmation">Feeling uncomfortable is just a sign that my old comfort zone is having a hard time
keeping up with me.</p>
</div>
<div class="affirmation-block">
<p>I've already coded 6 sites!</p>
</div>
<div class="affirmation-block">
<p class="affirmation">I've answered 10 other Skillcrusher's questions on Slack. Teamwork!!!</p>
</div>
<div class="affirmation-block">
<p class="affirmation">I've done hard things before and I can do this too. 💪</p>
</div>
<div class="affirmation-block">
<p class="affirmation">Studying an hour a day has helped me make steady progress.</p>
</div>
<div class="affirmation-block">
<p class="affirmation">There's more to do, but I'm proud of the progress I've made!</p>
</div>
<div class="affirmation-block">
<p class="affirmation">Mistakes are growth opportunities. I value learning more than being right.</p>
</div>
<div class="affirmation-block">
<p class="affirmation">I have big dreams! 👩💻 🏡 🚗 🏖️</p>
</div>
<div class="affirmation-block">
<p class="affirmation">I have 100 LinkedIn connections. 🙌</p>
</div>
<div class="gif-block">
<img src="img/so-fun.gif" alt="Shannon from Kim's Convenience saying 'So worth it. So fun.'">
</div>
<div class="affirmation-block">
<p class="affirmation">I try to solve the problem. And after an hour I reach out for help.</p>
</div>
<div class="gif-block">
<img src="img/youve-got-this-ted-lasso.gif" alt="Keely from Ted Lasso saying 'You've got this!'">
</div>
</div>
</main>
<footer>
<div class="content-wrapper">
<p class="copyright">Copyright 202X | Your name</p>
</div>
</footer>
</div>
</body>
</html>