-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 950 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TopCars - Mostruário</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1>TopCars</h1>
</header>
<div class="container">
<ul id="listaCarros" class="carros">
</ul>
<div id="detalheCarro" class="carro">
<div class="carro-item">
<h1>Selecione um carro</h1>
<img src="https://d2t6ms4cjod3h9.cloudfront.net/wp-content/uploads/2015/11/BMW_i3_Shadow_Sport_1_Shadow_RGB_Lowres.jpg" alt="Selecione um carro">
<ul class="carro-lista">
<li>Preço: 0</li>
<li>Ano: 0</li>
<li>Portas: 0</li>
<li>Estado: 0</li>
</ul>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>