-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
70 lines (67 loc) · 1.96 KB
/
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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Form</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/burger-qa-footer.css" />
<link rel="stylesheet" href="./css/form.css" />
<meta charset="UTF-8" />
</head>
<body>
<section class="display-phone">
<div class="title-commentbox">
<h3>Contact Us</h3>
</div>
<div class="box">
<form class="comment-box">
<p>Full Name*</p>
<input type="text" placeholder="Enter your full name" />
</form>
<form class="comment-box">
<p>Email</p>
<input type="text" placeholder="Enter your email adress" />
</form>
<form class="comment-box">
<p>Phone</p>
<input type="text" placeholder="Enter your phone number" />
</form>
<form class="message-box">
<p>Message</p>
<textarea name="text" id="area" placeholder="Write your message here..."></textarea>
</form>
</div>
<div class="button-submit">
<button type="submit">Submit</button>
</div>
</section>
<!-- <section class="display-big">
<div class="box">
<form class="comment-box">
<div class="title-commentbox">
<h3>Contact Us</h3>
</div>
<p>Full Name*</p>
<input type="text" placeholder="Enter your full name" />
</form>
<div class="line2">
<form class="comment-box0">
<p>Email</p>
<input type="text" placeholder="Enter your email adress" />
</form>
<form class="comment-box1">
<p>Phone</p>
<input type="text" placeholder="Enter your phone number" />
</form>
</div>
<form class="message-box">
<p>Message</p>
<textarea name="text" id="area" placeholder="Write your message here..."></textarea>
<div class="button-submit">
<button type="submit">Submit</button>
</div>
</form>
</div>
</section> -->
</body>
</html>