-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (138 loc) · 7.17 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
<html>
<head>
<title>My New Journey As A Bootcamp Student</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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=Roboto:wght@700&family=Source+Sans+3:wght@400;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/navbar.css">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/blogs.css">
<link rel="stylesheet" href="assets/css/footer.css">
</head>
<body>
<header>
<div class="container">
<img class="logo" src="assets/images/logo.png" alt="site logo"> <span class="site-name">My learning journal</span>
<!-- Site navigation -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-me.html">About Me</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="hero">
<article>
<a href="post.html">
<div class="bg-img">
<!-- <div class="hero-img-wrapper">
<img class="hero-img"
src="assets/images/image1.png"
alt="laptop left open with code displaying on the screen in a dimly lit room">
</div> -->
<div class="container">
<div class="post-details-hero">
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h1 class="post-title-hero">My new journey as a bootcamp student</h1>
<p class="post-desc-hero">After several months of learning in the Frontend Developer Career
Path, I've
made
the big jump over
to the Bootcamp to get expert code reviews of my Solo Projects projects and meet like-minded
peers.
</p>
</div>
</div>
</div>
</a>
</article>
</section>
<section class="blogs">
<div class="container">
<article class="blog blog-1">
<div class="blog-img-wrapper">
<img class="blog-img" src="assets/images/image2.png"
alt="open laptop on a desk with code displayed on a bright day">
</div>
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h2 class="blog-title">Blog one</h2>
<p class="blog-desc">I'm excited to start a new learning journey as a Scrimba Bootcamp student!
After
several months of
learning in the Frontend Developer Career Path.</p>
</article>
<article class="blog blog-2">
<div class="blog-img-wrapper">
<img class="blog-img" src="assets/images/image3.png"
alt="a person holding up a lightbulb with a pinkish-bluish gradient sky in front of them">
</div>
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h2 class="blog-title">Blog two</h2>
<p class="blog-desc">I'm excited to start a new learning journey as a Scrimba Bootcamp student!
After
several months of
learning in the Frontend Developer Career Path.</p>
</article>
<article class="blog blog-3">
<div class="blog-img-wrapper">
<img class="blog-img" src="assets/images/image4.png"
alt="a laptop on a desk in a well-lit space with a mission quote on the screen">
</div>
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h2 class="blog-title">Blog three</h2>
<p class="blog-desc">I'm excited to start a new learning journey as a Scrimba Bootcamp student!
After
several months of
learning in the Frontend Developer Career Path.</p>
</article>
<article class="blog blog-4">
<div class="blog-img-wrapper">
<img class="blog-img" src="assets/images/image6.png"
alt="abstract background fill with hues of purple">
</div>
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h2 class="blog-title">Blog four</h2>
<p class="blog-desc">I'm excited to start a new learning journey as a Scrimba Bootcamp student!
After
several months of
learning in the Frontend Developer Career Path.</p>
</article>
<article class="blog blog-5">
<div class="blog-img-wrapper">
<img class="blog-img" src="assets/images/image7.png"
alt="a young adult female walking on a beach with Fall attire on">
</div>
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h2 class="blog-title">Blog five</h2>
<p class="blog-desc">I'm excited to start a new learning journey as a Scrimba Bootcamp student!
After
several months of
learning in the Frontend Developer Career Path.</p>
</article>
<article class="blog blog-6">
<div class="blog-img-wrapper">
<img class="blog-img" src="assets/images/image8.png"
alt="code displayed on a screen">
</div>
<time class="post-posting-date" datetime="2023-09-18">September 18, 2023</time>
<h2 class="blog-title">Blog six</h2>
<p class="blog-desc">I'm excited to start a new learning journey as a Scrimba Bootcamp student!
After
several months of
learning in the Frontend Developer Career Path.</p>
</article>
<button>View More</button>
</div>
</section>
</main>
<footer>
<p class="site-name">My Learning Journal</p>
<p class="copyright">Copyright ©2023</p>
</footer>
</body>
</html>