-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
172 lines (162 loc) · 7.14 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!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>Personal Blog</title>
<!--Styles CSS link-->
<link rel="stylesheet" href="static/css/styles.css"/>
<!--Google Fonts-->
<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=Architects+Daughter&family=Walter+Turncoat&display=swap" rel="stylesheet"> <!--For Title Hero-->
<!--This code is to link for FontAwesome, icons for socials-->
<script src="https://kit.fontawesome.com/b56a2d996b.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="index-container">
<!--Navigation Menu Section-->
<header class="index-header">
<nav class="navbar">
<ul class="menu">
<!--Adding the menu to the left side-->
<div class="nav-menu">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="/static/pages/blog.html">Blog</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</div>
<!--Adding socials at end of navbar-->
<div class="menu-socials">
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://x.com/kirin_developer" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/laura-vara-co/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/vara-co" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</li>
</div>
</ul>
</nav>
</header>
<!--Avatar Image and Bio-->
<section class="avatar-bio">
<div class="index-title">
<h1>Welcome to Missha's Website</h1>
<h3>From Farming to Software Engineering</h3>
<br>
<hr>
<br>
</div>
<img src="static/images/MisshaMainAvatar_sq.JPG" alt="Profile image of Missha surrounded by ivy leaves" class="avatar">
<br>
<div class="bio">
<h4>
Urban Micro-Farmer | Jr. Data Analyst & Web Developer
</h4><br>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illum commodi quia fuga, voluptatem provident dolore eveniet libero delectus enim amet quasi? Nostrum, eos rem architecto earum aliquid laudantium quo enim!
</p>
</div>
</section>
<!-- Featured Section -->
<section class="scroll">
<div class="featured-title">
<h2>Featured Blog Posts</h2>
</div>
<figure class="featured-images">
<a href="/static/blogpost/post1.html">
<img src="/static/images/HelloWorldPost_sq.jpg" alt="Feature Post 1">
</a>
<a href="/static/blogpost/post2.html">
<img src="/static/images/OneStep_BlogPost_sq.jpg" alt="Feature Post 2">
</a>
<a href="/static/blogpost/post3.html">
<img src="/static/images/TheStructurePost_sq.jpg" alt="Feature Post 3">
</a>
<a href="/static/blogpost/post4.html">
<img src="/static/images/StylingCSSPost_sq.jpg" alt="Feature Post 4">
</a>
<a href="/static/blogpost/post5.html">
<img src="/static/images/AligningWithFlexboxPost_sq.jpg" alt="Feature Post 5">
</a>
<a href="/static/blogpost/post6.html">
<img src="/static/images/FunContainersGridPost_sq.jpg" alt="Feature Post 6">
</a>
</figure>
</section>
<!-- Subscribe section -->
<section class="newsletter-index">
<h3>Subscribe to our Newsletter</h3>
<hr>
<br>
<form action="#" method="POST">
<input type="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</section>
<!--Footer Section with Copyright legend and Socials-->
<footer>
<ul class="footer-menu">
<div class="copyright">
<li>Copyright © 2024 Laura Vara</li>
</div>
<div class="footer-socials">
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://x.com/kirin_developer" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/laura-vara-co/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/vara-co" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</li>
</div>
</ul>
</footer>
</div>
</body>
</html>