-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.html
124 lines (120 loc) · 3.48 KB
/
search.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="Can Bartu Kılıç" />
<title>Intagram Clone</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<section class="page">
<div class="upper-case">
<div class="top">
<img src="images/intagramtop.png" alt="intagramtop" />
</div>
<div class="container-search">
<div class="search-nav">
<div class="search-text">
<form action="" method="post">
<input type="text" placeholder="Search.." />
<button class="search-icon">
<img src="images/Search-bold.png" alt="bold-search" />
</button>
</form>
</div>
</div>
<div class="scan">
<img src="images/Scan.png" alt="scan" />
</div>
</div>
</div>
<ul class="discover">
<li>
<a href="#">
<img src="images/reels.png" width="21" height="21" alt="Reels" /><span>Reels</span>
</a>
</li>
<li>
<a href="#">
<img src="images/igtv.png" width="23" height="23" alt="IGTV" /><span>IGTV</span>
</a>
</li>
<li>
<a href="#">
<img src="images/Bag.png" width="17" height="19" alt="Shop" /><span>Store</span>
</a>
</li>
<li>
<a href="#">
<img src="images/Game.png" width="19" height="19" alt="Game" /><span>Games</span
>
</a>
</li>
</ul>
<div class="photos">
<ul>
<li><img src="images/searchphoto1.png" alt="women" /></li>
<li>
<img
src="images/searchphoto3.png"
alt="boy" />
</li>
<li>
<img
src="images/searchphoto4.png"
alt="hat" />
</li>
<li>
<img
src="images/searchphoto6.png"
alt="ud" />
</li>
<li>
<img
src="images/searchphoto2.png"
alt="vialon" />
</li>
<li>
<img
src="images/searchphoto5.png"
alt="oldman" />
</li>
<li>
<img
src="images/searchphoto7.png"
alt="udi" />
</li>
</ul>
</div>
</section>
<section class="footer">
<ul class="menu">
<li>
<a href="index.html"><img src="images/Home.png" alt="" /></a>
</li>
<li>
<a href="search.html"><img src="images/Search.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="images/Tick-Square.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="images/Heart-plus.png" alt="" /></a>
</li>
<li>
<a href="profile.html"><img src="images/Profile.png" alt="" /></a>
</li>
</ul>
<div class="home-indicator">
<img src="images/home indicator.png" alt="Home Indicator" />
</div>
</section>
</body>
</html>