-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·65 lines (62 loc) · 1.98 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vision Board Project</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<!-- BODY SECTION -->
<body>
<!-- VISION BOARD BLOCKS -->
<div id="vision-board">
<div class="block small-block left light-bg">
<p><span class="highlight">GROW</span></p>
<p>LEARN TO DESIGN &<br><strong>Code Websites</strong></p>
</div>
<div class="block small-block center">
<img src="img/flower.png" alt="White Flower Image">
</div>
<div class="block small-block center light-bg">
<p>
HTML <br>
CSS <br>
JAVASCRIPT <br>
WORDPRESS <br>
PYTHON <br>
</p>
</div>
<div class="block large-block left">
<p><span class="highlight">FREELANCE</span></p>
<p>MAKE ENOUGH SIDE CASH TO<br><strong>Pay off debt</strong></p>
<img src="img/piggy.png" alt="Piggy-bank and Dollar Sign Image">
</div>
<div class="block large-block center dark-bg">
<img src="img/eye.png" alt="Image of an Open Eye">
<p class="title"><span class="year">2020</span><br>VISION BOARD</p>
</div>
<div class="block large-block right">
<img src="img/plane.png" alt="Flting Plane Image">
<p><span class="highlight">TRAVEL</span></p>
<p>PLAN A TRIP WHERE I CAN<br><strong>Work Remotely</strong></p>
</div>
<div class="block small-block center light-bg">
<p>
WALK DOG ++<br>
MEDITATE <br>
YOGA <br>
SNUGGLE PUP <br>
</p>
</div>
<div class="block small-block center">
<img src="img/doggo.png" alt="Doggy Image">
</div>
<div class="block small-block right light-bg">
<p><span class="highlight">MIND & BODY</span></p>
<p>EXERCISE MORE <br>& FIND ZEN IN<br><strong>Challenge</strong></p>
</div>
</div>
</body>
</html>