-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 974 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="navbar">
<a href="#login">Login</a>
<div class="dropdown">
<button class="dropbtn">Menu
</button>
<div class="dropdown-content">
<a href="#">My Profile</a>
<a href="#">Settings</a>
<a href="#">Advances Options</a>
</div>
</div>
<input type="text" placeholder="Search your brand...">
</div>
<div class = "title">
<h1>Advertise your brand</h1>
</div>
<div class = "filebox">
<label for="image-input">Upload your logo</label>
<input type="file" id="image-input" accept="image/jpeg, image/png, image/jpg">
</div>
<div class="liked" id="display-image" ></div>
<small><span class = "times">0</span> liked</small>
<script src="index.js"></script>
</body>
</html>