-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
58 lines (51 loc) · 1.67 KB
/
contact.html
File metadata and controls
58 lines (51 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact</title>
<link rel="stylesheet" href="style.css">
<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=Young+Serif&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section-one">
<h1 class="section-one__name"> Jenifer Nirmal Raj</h1>
<h2 class="section-one__role"> Web Developer</h2>
<a class="section-one__contact" href="index.html">Home</a>
</div>
<div class="contact-form">
<form>
<table>
<tr>
<td> Name:</td> <td> <input type="text" placeholder="Enter your name" class="contact-form__input"></td>
</tr>
<tr>
<td> Email:</td> <td> <input type="text" placeholder="Enter your Email" class="contact-form__input"></td>
</tr>
<tr>
<td> Message:</td>
<td>
<textarea placeholder="Message"class="contact_form__textarea">
</textarea>
</td>
</tr>
<tr>
<td></td>
<td><input type="submit" class="contact-form__submit"></td>
</tr>
</table>
</form>
</div>
<div class="section-six">
<p class="section-six__title"> Social Media:
<a href="https://www.instagram.com/"target="_blank">Instagram</a>,
<a href="https://www.facebook.com/"target="-blank">Facebook</a>
</p>
<p class="section-six__desc">©Jenifer Nirmal Raj</p>
</div>
</div>
</body>
</html>