-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (59 loc) · 2.39 KB
/
index.html
File metadata and controls
74 lines (59 loc) · 2.39 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Meta tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/responsive.css">
<title>Apple - Home</title>
</head>
<body>
<header>
<nav class="menu-mobile">
<i class="btn-menu fas fa-bars"></i>
<a class="btn-close" href="#">X</a>
<a href="#" style="font-size: 19px;"><i class="fab fa-apple"></i></a>
<ul class="items-mobile">
<li><a href="#">Mac</a></li>
<li><a href="#">iPad</a></li>
<li><a href="#">iPhone</a></li>
<li><a href="#">Watch</a></li>
<li><a href="#">TV</a></li>
<li><a href="#">Music</a></li>
<li><a href="#">Suporte</a></li>
</ul>
<a href="#"><i class="fas fa-shopping-bag"></i></a>
</nav>
<nav class="menu-desktop">
<a href="#">
<i class="fab fa-apple"></i>
</a>
<ul>
<li><a href="#">Mac</a></li>
<li><a href="#">iPad</a></li>
<li><a href="#">iPhone</a></li>
<li><a href="#">Watch</a></li>
<li><a href="#">TV</a></li>
<li><a href="#">Music</a></li>
<li><a href="#">Suporte</a></li>
</ul>
<a href="#"><i class="fas fa-search"></i></a>
<a href="#"><i class="fas fa-shopping-bag"></i></a>
</nav>
</header>
<section class="demo">
<h1>Um salto radical.</h1>
<div class="links-compra">
<a href="#">Saiba mais</a>
<a href="#">Comprar</a>
</div>
<img src="https://f088b146830a59b5.cdn.gocache.net/uploads/noticias/2020/10/13/77227df9864eb1a20cad5f903b154dc4f8e39d28.jpg" alt="Iphone 12">
</section>
<script src="./js/scripts.js"></script>
</body>
</html>