-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
189 lines (108 loc) · 6.11 KB
/
index.html
File metadata and controls
189 lines (108 loc) · 6.11 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Susan Siow at Udacity</title>
<meta name="Susan Siow at Udacity" content="A blog about my story at Udacity." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/favicon.ico">
</head>
<body>
<div class="home-container-wrapper">
<!-- Header -->
<header>
<!-- Logo Container -->
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="logo"></a>
</div>
<!-- Navigation -->
<nav>
<ul>
<li><a class="nav-tab tab-home tab-current" href="index.html">Home</a></li>
<li><a class="nav-tab tab-blog" href="blog-post-4.html">Blog</a></li>
<li><a class="nav-tab tab-contact" href="contact.html">Contact</a></li>
</ul>
</nav>
<button class="btn-header"><a href="#subscribe">Subscribe</a></button>
</header>
<!-- Home Top -->
<section class="home-top text-light text-center">
<h1>Udacity Changes Your Career Destiny</h1>
<p>This is blog is about my experiences at <em><a href="https://www.udacity.com/" rel="noopener" target="_blank">Udacity</a></em> school.</p>
</section>
<!-- Blog Cards -->
<article class="home-article">
<div class="home-article-heading heading-dark text-center divider-center divider-dark">
<h2>Latest Updates</h2>
</div>
<!-- Blog Card #1 -->
<div class="blog-card blog-card-1">
<img src="images/blog-post-4.jpg" alt="Front End Nanodegree First Project">
<div class="blog-card-content">
<h2 class="blog-card-title">Front End Nanodegree First Project</h2>
<div class="meta-date">February 4, 2020</div>
<div class="blog-card-excerpt">
Throughout the first part of the Frontend Developer Nanodegree course, I've learned the amazing CSS Grid and Flexbox which are so helpful and agile for the creation of responsive websites or apps.
</div>
<a class="read-more" href="blog-post-4.html">Read More</a>
</div>
</div>
<!-- Blog Card #2 -->
<div class="blog-card blog-card-2">
<img src="images/blog-post-3.jpg" alt="Program Registation after Chinese New Year">
<div class="blog-card-content">
<h2 class="blog-card-title">Program Registation after Chinese New Year</h2>
<div class="meta-date">January 29, 2020</div>
<div class="blog-card-excerpt">
I'm feeling grateful that the 50% discount on the Nanodegree is still active after my Chinese New Year holidays. With so much happy anticipation, I've signed up the technical program.
</div>
<a class="read-more" href="blog-post-3.html">Read More</a>
</div>
</div>
<!-- Blog Card #3 -->
<div class="blog-card blog-card-3">
<img src="images/blog-post-2.jpg" alt="Nanodegree Prerequisite Preparation">
<div class="blog-card-content">
<h2 class="blog-card-title">Nanodegree Prerequisite Preparation</h2>
<div class="meta-date">November 10, 2019</div>
<div class="blog-card-excerpt">
The Front End Developer Nanodegree prerequisites are knowledge on HTML, CSS, Javascript and Git. Thus, I'm required to prepare the technical skills which I'm not familiar with - Javascript and Git.
</div>
<a class="read-more" href="blog-post-2.html">Read More</a>
</div>
</div>
<!-- Blog Card #4 -->
<div class="blog-card blog-card-4">
<img src="images/blog-post-1.jpg" alt="How Did I Discover Udacity">
<div class="blog-card-content">
<h2 class="blog-card-title">How Did I Discover Udacity</h2>
<div class="meta-date">November 2, 2019</div>
<div class="blog-card-excerpt">
While I was pondering about my future remote working prospect, I've realized that in order to keep myself constantly flourish with my technical skills, I need to search for a long-term job opportunity.
</div>
<a class="read-more" href="blog-post-1.html">Read More</a>
</div>
</div>
</article>
<!-- Subscription -->
<section id="subscribe" class="subscription subscription-home text-center text-light">
<h2>Newsletter</h2>
<form class="form-basic">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email Address">
<input type="submit" value="Subscribe">
</form>
<p class="subscription-note">* Subscribe to follow my journey at Udacity.</p>
</section>
<!-- Footer -->
<footer>
<div class="footer-copyright">
<p>Ⓒ 2020
<a href="index.html">Susan Siow at Udacity</a>
<p>
</div>
</footer>
</div>
</body>
</html>