-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
176 lines (109 loc) · 5.48 KB
/
contact.html
File metadata and controls
176 lines (109 loc) · 5.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Contact | Susan Siow at Udacity</title>
<meta name="Contact" content="Please fill in the form to contact me." />
<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="contact-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" 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 tab-current" href="contact.html">Contact</a></li>
</ul>
</nav>
<button class="btn-header"><a href="#subscribe">Subscribe</a></button>
</header>
<!-- Contact Form -->
<section class="contact-form">
<h1>Leave a Message</h1>
<form class="form-basic">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email Address">
<textarea name="message" rows="15" placeholder="Your message..."></textarea>
<input type="submit" value="Send">
</form>
</section>
<!-- Aside -->
<aside class="blog-aside">
<!-- Author Card -->
<div id="author" class="blog-aside-card author-card">
<h6 class="title">Author</h6>
<div class="content">
I'm Susan Siow, a freelance web/graphic designer based in Malaysia. My ultimate career goal is to become an AI engineer and create intelligent software for a better world. Kindly visit my <em class="no-underline-link"><a href="https://www.susansiow.com/" rel="noopener" target="_blank">website</a></em> for more info.
</div>
</div>
<!-- Follow Card -->
<div class="blog-aside-card follow-card">
<h6 class="title">Follow</h6>
<div class="content">
<ul>
<li>
<a href="https://www.facebook.com/susansofficial" rel="noopener" target="_blank">
<img src="images/icons/facebook.png" alt="Facebook">
</a>
</li>
<li>
<a href="https://twitter.com/susansofficial" rel="noopener" target="_blank">
<img src="images/icons/twitter.png" alt="Twitter">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/susansiow" rel="noopener" target="_blank">
<img src="images/icons/linkedin.png" alt="Linkedin">
</a>
</li>
<li>
<a href="https://github.com/susansiow" rel="noopener" target="_blank">
<img src="images/icons/github.png" alt="Github">
</a>
</li>
</ul>
</div>
</div>
<!-- Latest Card -->
<div class="blog-aside-card latest-card">
<h6 class="title">Recent Posts</h6>
<div class="content">
<ul class="no-underline-link">
<li><a href="blog-post-4.html">Front End Nanodegree First Project</a></li>
<li><a href="blog-post-3.html">Program Registation after Chinese New Year</a></li>
<li><a href="blog-post-2.html">Nanodegree Prerequisite Preparation</a></li>
<li><a href="blog-post-1.html">How Did I Discover Udacity</a></li>
</ul>
</div>
</div>
</aside>
<!-- 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>