-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
102 lines (89 loc) · 3.4 KB
/
contact.html
File metadata and controls
102 lines (89 loc) · 3.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<!-- INTERNAL CSS-->
<style>
header ul{
list-style: none;
}
a{
color: white;
}
.nav-link{
color: gray;
}
.product -content{
display: grid;
grid-template-columns: 33.33% 33.33% 33.33%;
align-items: center;
justify-content: space-between;
}
.product-image{
padding: 10px;
}
.product-image img{
object-fit: contain;
width: 100%;
}
</style>
</head>
<body style="margin: 0; padding: 10; height: 100%; width: 100%;">
<header style="background-color: rgb(31, 31, 67); color: white; padding: 0; margin: 0;">
<nav style="display: grid; grid-template-columns: 15% 60% 25%; align-items: center;">
<div>
<h2>MadePetal</h2>
</div>
<ul style="display: flex; justify-content: space-between; list-style-type: none;">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
<li>SERVICES</li>
<li>SHOP</li>
<li>CONTACT US</li>
</ul>
<ul style="display: flex; justify-content: space-evenly; list-style-type: none;">
<li><button>BOOK A SESSION</button></li>
<li><button>CALL US</button></li>
</ul>
</nav>
</header>
<main>
<section class="product">
<div class="product-title">
<h2>product Listing</h2>
</div>
<div class="product-content">
<div class="product-image">
<img src="https://pixtinfinity-node-js-integration-nathius262-projects.vercel.app/images/p2.jpg" alt="product image">
</div>
<div class="product-image">
<img src="https://pixtinfinity-node-js-integration-nathius262-projects.vercel.app/images/p2.jpg" alt="product image">
</div>
<div class="product-image">
<img src="https://pixtinfinity-node-js-integration-nathius262-projects.vercel.app/images/p2.jpg" alt="product image">
</div>
</div>
</section>
<form action="">
<div class="form-group">
<label for="#email">Email</label>
<input type="email" name="email" id="email">
</div>
<div id="name" class="form-group">
<label for="#full-name">Full Name</label>
<input type="text" name="full_name" id="full-name">
</div>
<div id="name" class="form-group">
<label for="#phone">Phone</label>
<input type="tel" name="phone" id="Phone">
</div>
<button type="submit">Submit</button>
</form>
</main>
<footer>
</footer>
</body>
</html>