-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
168 lines (167 loc) · 5.02 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Unnamalai Ramanathan - Contact</title>
<meta charset="utf-8" />
<meta
name="description"
content="This site gives an overview of the projects developed and contact information."
/>
<!-- to optimize the contents displayed on a phone -->
<meta name="viewport" content="width=device-width initial-scale=1" />
<!-- Add favorite icon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon-16x16.png"
/>
<!-- Link to CSS file that resets all the styles in the page-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<!-- Link to import Source Sans Pro Google Font-->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Source+Sans+Pro:wght@300;400;700&display=swap"
/>
<!-- Link to CSS file that sets specified styles in the page-->
<link rel="stylesheet" href="css/style.production.css" />
</head>
<body>
<!--Header includes logo and main navigation-->
<header class="page-header">
<!--Add logo here-->
<div
class="page-header__item"
title="Personal logo of Unnamamalai Ramanathan,a text logo in camel-case letters that consists of my name."
></div>
<nav class="page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item"
>Home</a
>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item"
>About me</a
>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item"
>Work</a
>
</li>
<li role="presentation">
<a
href="contact.html"
role="menuitem"
class="navigation-list__item navigation-list__item--active"
>Contact</a
>
</li>
</ul>
</nav>
</header>
<div>
<form
class="contactform"
action="#"
method="post"
onsubmit="alert('Thank You!! Your message has been sent.')"
>
<div class="contactform__wrapper">
<div class="contactform__wrapper__items">
<label for="fname">FirstName: </label>
<input
type="text"
name="fname"
id="fname"
value=""
placeholder="First Name"
/>
</div>
<div class="contactform__wrapper__items">
<label for="lname">LastName: </label>
<input
type="text"
name="lname"
id="lname"
value=""
placeholder="Last Name"
/>
</div>
<div class="contactform__wrapper__items">
<label for="email">*Email: </label>
<input
type="email"
name="email"
id="email"
value=""
placeholder="[email protected]"
required
/>
</div>
<div class="contactform__wrapper__items">
<label for="tel">Telephone: </label>
<input
type="tel"
name="tel"
id="tel"
value=""
placeholder="000-000-0000"
pattern="\d{3}[\-]\d{3}[\-]\d{4}"
/>
</div>
<div class="contactform__wrapper__items">
<label for="message">*Message: </label>
<textarea
name="message"
id="message"
placeholder="write your message"
rows="8"
cols="60"
required
></textarea>
</div>
<div class="contactform__wrapper__items">
<input
type="submit"
name="submit"
class="submit_button"
value="Submit"
/>
</div>
<p>* indicates mandatory fields</p>
</div>
</form>
</div>
<!-- Footer includes social media images-->
<footer class="page-footer">
<p>Find me on</p>
<div class="page-footer__socialmedia">
<a href="https://www.linkedin.com/in/unnarm27" target="_blank"
><img src="img/linkedin.svg" alt="Linkedin logo"
/></a>
<a href="https://github.com/Unna27" target="_blank"
><img src="img/github.svg" alt="Github logo"
/></a>
</div>
</footer>
<!--add tota11y js file to check HTML accessibilities-->
<script src="js/tota11y.min.js"></script>
</body>
</html>