-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.13 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
<!DOCTYPE html>
<html lang="pt-br">
<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>StarBucks</title>
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="shortcut icon" href="/img/logo.png" type="image/x-icon">
</head>
<body>
<header>
<div class="line"></div>
<div class="container header--area">
<div class="header-left">
<a href="/"><img src="assets/img/logo.png" alt="Logo"></a>
</div>
<div class="header-right">
<div class="header--search">
<form>
<input type="text" name="search" placeholder="Search"/>
<button>
<img src="/assets/img/loupe.png" alt="Lupa">
</button>
</form>
</div>
<div class="header--menu">
<img src="/assets/img/menu.png" alt="header menu">
</div>
</div>
</div>
</header>
</body>
</html>