-
Notifications
You must be signed in to change notification settings - Fork 0
/
submit-form.html
142 lines (136 loc) · 3.92 KB
/
submit-form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Submit</title>
<link rel="stylesheet" href="css/submit-form.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<script src="js/script.js" defer></script>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/5fdc9b4c36.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<nav>
<a href="#"
><img
src=" https://demo.themefisher.com/godocs-bootstrap/images/logo.png"
alt="Logo"
/></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Search Page</a></li>
</ul>
<form class="search" action="search-result.html">
<input type="sear" name="search" placeholder="Search Here..." />
</form>
<a id="first-button" href="#">Changelog</a>
<a id="sec-button" href="#">Contact</a>
</nav>
</header>
<div class="container">
<h4>Got Any Questions</h4>
<div class="f-name-s-name">
<small>First Name</small>
<div> <small>Last Name</small></div>
</div>
<form action="post">
<input
type="text"
id="fname"
name="fname"
required
placeholder="Your First Name"
/>
<input
type="text"
id="lname"
name="lname"
required
placeholder="Your Last Name"
/>
</form>
<small class="email-small">Email</small>
<form action="get">
<input
type="email"
id="email"
name="email"
required
placeholder="Your Email Adress"
/>
</form>
<small id="reasons-of-contact">Reason of Contact</small>
<form action="post">
<select id="reason" name="reason" required>
<option value="" disabled selected>Select Reason</option>
<option value="Support">Business</option>
<option value="Feedback">Ticket</option>
<option value="Other">Project</option>
</select>
</form>
<small id="start-here">Start Writting From Here</small>
<form action="post">
<textarea
id="textarea"
name="textarea"
required
placeholder="Start Writing Here..."
></textarea>
</form>
<button type="submit">Send</button>
</div>
<footer>
<div class="nav">
<ul>
<li><a href="#">Changelog</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Search</a></li>
</ul>
</div>
<div class="logo-holder">
<a href="#"
><img
src="https://demo.themefisher.com/godocs-bootstrap/images/logo.png"
alt="Logo"
/></a>
</div>
<div class="social-media-icons">
<div
><a href="#"
><i
class="fa-brands fa-facebook fa-xl"
style="color: #ffffff"
></i></a
></div>
<div>
<a href="#"
><i class="fa-brands fa-x-twitter fa-xl" style="color: #ffffff"></i
></a>
</div>
<div>
<a href="#"
><i class="fa-brands fa-github fa-xl" style="color: #ffffff"></i
></a>
</div>
<div>
<a href="#"
><i class="fa-brands fa-linkedin fa-xl" style="color: #ffffff"></i
></a>
</div>
</div>
</footer>
<hr />
<div class="copyright">
<small>Copyright © 2024 web by tony</small>
</div>
</body>
</html>