-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.html
91 lines (64 loc) · 2.51 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
80
81
82
83
84
85
86
87
88
89
90
91
<!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>Flower Basket</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="images/img-2.jpg" type="image/x-icon">
</head>
<body>
<!-- header section -->
<header>
<a href="index.html" class="logo">Flowers Basket <span>.</span></a>
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
<a href="basket.html">Cart</a>
</nav>
</header>
<!-- contact section -->
<section class="contact" id="contact">
<h1 class="heading"> <span> contact </span> us </h1>
<div class="row">
<form action="">
<input type="text" placeholder="Name" class="box">
<input type="email" placeholder="Email" class="box">
<input type="number" placeholder="Number" class="box">
<textarea name="" class="box" placeholder="Message" id="" cols="30" rows="10"></textarea>
<input type="submit" value="Submit" class="button">
</form>
</div>
</section>
<!-- footer section -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>links</h3>
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#products">products</a>
<a href="#contact">contact</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#home">my account</a>
<a href="#home">my order</a>
<a href="#home">my favorite</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#">+44-456-7890</a>
<a href="#">[email protected] </a>
</div>
</div>
</section>
<!-- footer section -->
</body>
</html>