-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (70 loc) · 2.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pen Shop </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="js.js"></script>
<nav class="navbar">
<div class="menu">
<a href="" class="nav-link">Home</a>
<a href="" class="nav-link">Products </a>
<a href="" class="nav-link">Contact Us</a>
</div>
</nav>
<div class="hero">
<h1 class="text">Find Your Perfect Pen </h1>
<p class="text">Quality Pens For Every Occassion</p>
<!-- <img src="https://media.istockphoto.com/id/508410794/vector/pen-and-pencil-color-doodle-speech-bubble.jpg?s=612x612&w=0&k=20&c=Zz23w4YbQAiFWmfLyoixBd-pI5MTwW1AfArQe_4c6-k=" alt=""> -->
</div>
<div class="products">
<h1>Our Products</h1>
<div class="products_grips">
<div class="products_card">
<img src="https://img.lazcdn.com/3rd/q/aHR0cHM6Ly9zdGF0aWMtMDEuZGFyYXouY29tLmJkL3AvOTgwYmQwMDI0ZjExMDg0OTE1NzIzOTAzYTk4YmQ5M2YuanBn_400x400q75.png_.webp"height="300px" width="300px" alt="">
<h3>Metal Ink Fountain Pen Luxury Dragon 6006 </h3>
<p>৳ 380</p>
<p> off to ৳ 850-55%</p>
</br>
</div>
<div class="products_card">
<img src="https://img.lazcdn.com/3rd/q/aHR0cHM6Ly9zdGF0aWMtMDEuZGFyYXouY29tLmJkL3AvYjliNGQwN2YyN2VmMGMwM2Q3OTliZWMzMDNjNjk3YTUuanBn_400x400q75.png_.webp"height="300px" width="300px" alt="">
<h3>Metal Wood Grain Fountain Pen School Supplies Pens </h3>
<p>৳ 368</p>
<p>off to ৳ 1,320-72%</p>
</br>
</br>
</div>
<div class="products_card">
<img src="https://img.lazcdn.com/3rd/q/aHR0cHM6Ly9zdGF0aWMtMDEuZGFyYXouY29tLmJkL3AvZjdlYjZhZTI1NzVlNzc2ZTA2OGU0NmE3MTNlOTNkYzMuanBn_400x400q75.png_.webp"
height="300px" width="300px"
alt="">
<h3>DELI Metal Sign Pen 0.5mm Gel Ink Pens Golden Silver Color Metallic </h3>
<p>৳ 127</p>
<p> off to ৳ 390-67%</p> n
</div>
</div>
</div>
<div class="contact_parent">
<div class="contact">
<h1>Contacts US </h1>
<form >
<label for="Name" name="Name"> Name: </label>
<input type="text" placeholder="Name" id="Name">
<label for="email" name="email"> Email: </label>
<input type="email" placeholder="email" id="email">
<label for="Message">Message: </label>
<textarea type="Message" name="Message" placeholder="Message" id="Message"> </textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
<div>
<p> © 2024 All right reseved</p>
</div>
</body>
</html>