-
Notifications
You must be signed in to change notification settings - Fork 13
/
contact.html
79 lines (60 loc) · 2.47 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
<!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>PaceHut/contact</title>
<link rel="stylesheet" href="./Public/CSS/index.css">
<link rel="stylesheet" href="./Public/CSS/contact.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Da+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat+Subrayada&display=swap" rel="stylesheet">
</head>
<body>
<nav id="nav">
<h2 id="logo">PaceHut</h2>
<a href="https://www.youtube.com/channel/UCZvVcYWi4dUwv-4hNtegx_w" id="youtube" target="_blank"></a>
<a href="https://www.instagram.com/mafiz._/" id="instagram" target="_blank"></a>
</nav>
<section id="main">
<ul class="nav_elements" id="nav_id">
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html">Card</a></li>
<li><a href="./calc.html">CalC</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<section id="middle">
<section >
<h2 class="heading">-Reach out to us-</h2>
<form action="#" class="form" netlify>
<div class="div">
<label for="name">
Name:
</label>
<input type="text" id="name" name="name" required>
</div>
<div class="div">
<label for="email">
Email:
</label>
<input type="email" name="email" id="email" required>
</div>
<div class="div" >
<label for="feedback" id="feedlabel">
Feedback:
</label>
<textarea name="feedback" id="feedback" cols="30" rows="10"></textarea>
</div>
<button onclick="promptMe()">
Submit
</button>
</form>
</section>
</section>
<footer>
Copyright © www.pacehut.ml All Rights Reserved
</footer>
<script src="./Public/JS/index.js"></script>
<script src="./Public/JS/contact.js"></script>
</body>
</html>