-
Notifications
You must be signed in to change notification settings - Fork 1
/
amazon_clone.html
45 lines (36 loc) · 992 Bytes
/
amazon_clone.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
<!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>Amazon Clone</title>
<link rel="stylesheet" href="CSS/amazon_clone.css">
</head>
<body>
<header id="nav">
<div id="nav1">
<img src="img/tree3.jpg" alt="">
</div>
<div id="nav2">
<label for="search"></label>
<input type="text" id="search" placeholder="search here">
</div>
</header>
<div id="categ">
</div>
<div id="ad">
<div id="ad1">
<img src="img/ad.jpg" alt="">
</div>
</div>
<section id="products">
<h1>Electronics</h1>
<div class="elecpro">
<img src="img/iphone.jpg" alt="">
<img src="img/poco.jpg" alt="">
<img src="img/oneplus.jpg" alt="">
</div>
</section>
</body>
</html>