-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (59 loc) · 2.43 KB
/
contact.html
File metadata and controls
59 lines (59 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Html Website | Contact</title>
<!-- Seo Meta tags -->
<meta name="description" content="Basic HTML website - Contact me for website design and web development">
<meta name = "Author" content="Anusuyadevi">
<meta name="Keywords" content="Basic HTML Website, HTML only Portfolio, HTML structure with multipages, contact">
<!-- OG Tags -->
<meta property="og:title" content="Basic HTML Website - Contact Us">
<meta property="og:type" content="website">
<meta property="og:description" content="Basic HTML website - Contact me for website design and web development">
<meta property="og:image" content="https://anu-techie.github.io/Basic-HTML-Website/images/web.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:url" content="https://anu-techie.github.io/Basic-HTML-Website/">
</head>
<body>
<header>
<h1>Anusuyadevi B</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Contact Us</h2>
</section>
<main>
<section class="form">
<p>Kindly share the details, and we will get back to you as soon as possible</p>
<form>
<div class="form-group">
<label for="name">Name : </label>
<input type="text" name="name" id="name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="email">Email : </label>
<input type="email" name="email" id="email" placeholder="Enter your email-Id" required>
</div>
<div class="form-group">
<label for="message">Message : </label>
<textarea name="message" id="message" required></textarea>
</div>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p>© All right reserved 2025</p>
</footer>
</body>
</html>