-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title> Forms </title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,800;1,600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="div">
<h1 class="h-1">
CONTACT
</h1>
<p class="p-p">
Contact us to get
</p>
<p class="p-p1">
free Support
</p>
</div>
</header>
<form>
<div class="div-0">
<div class="descr">
<label for="passw">
</label>
<textarea class="textarea-wraper" placeholder="Description">
</textarea>
</div>
<div class="vertical">
<div class="div-1">
<label for="sub"></label>
<input class="in-1" type="text" name="subject" id="sub" placeholder="Subject">
</div>
<div class="div-1">
<label for="name"></label>
<input class="in-2" type="text" name="name/surname" id="name" placeholder="Name/Surname">
</div>
<div class="div-1">
<label for="email"></label>
<input class="in-3" type="text" name="email" id="email" placeholder="Email">
</div>
<div class="div-1">
<button class="send" type="submit"> Send </button>
</div>
</div>
</div>
</form>
</body>
</html>