-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (59 loc) · 2.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Form</title>
<link rel="stylesheet" href="tya.css" />
<link
rel="icon"
type="image/png"
href="https://yt3.ggpht.com/ytc/AKedOLTyYyoVRhy94ZBqI9r0T9EkGsVo3JtWCXoUy8ZA=s900-c-k-c0x00ffffff-no-rj"
/>
</head>
<div class="girl">
<img src="https://i.ibb.co/5TB99WY/img.png" alt="img" />
</div>
<body>
<div class="bg-image"></div>
<form>
<div class="head">
<h1>Contact Form</h1>
<p>Please fill all the texts in the fields.</p>
</div>
<label for="fullName">Your Name:</label>
<input type="text" placeholder="Your Full Name" name="fullName" />
<label for="email">Your Email:</label>
<input
type="email"
placeholder="Valid Email Address"
name="email"
required
/>
<label for="message">Message:</label>
<textarea
placeholder="Your Message To Us"
name="message"
required
></textarea>
<label for="subject">Subject:</label>
<input type="subject" placeholder="Job Enquiry" name="text" required />
<button class="button">SEND</button>
</form>
<!-- <audio
autoplay="true"
src="https://www.mboxdrive.com/harry.mp3"
type="audio/mpeg"
autoplay
>
Your browser does not support the audio element.
</audio> -->
<div class="socialbtns">
<a href="https://www.facebook.com/aman.dhattarwal/" target="_blank">FACEBOOK</a>|
<a href="https://www.instagram.com/apnikaksha/" target="_blank">INSTAGRAM</a>|
<a href="https://youtube.com/channel/UCz8L_XycParWj4BwSYWBEwA" target="_blank">YOUTUBE</a>|
<a href="https://twitter.com/amandhattarwal" target="_blank">TWITTER<a>
</div>
</body>
</html>