-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (63 loc) · 2.09 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
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
<!DOCTYPE html>
<html lang="pt-br">
<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" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Ao redor do mundo!</title>
</head>
<body>
<div class="container-fluid p-0 container-sm d-flex justify-content-center">
<div class="card text-center shadow-lg" style="width: 26rem">
<div class="card-header bg-white text-dark font-weight-bold">
Clima e Tempo
</div>
<div class="card-body">
<div class="city">Rio de Janeiro, BR</div>
<div class="date">Terça, 1 Dezembro 2020</div>
<div class="container-img">
<img src="./icons/unknown.png" />
</div>
<div class="container-temp mx-4 my-3">
<div>22</div>
<span>°c</span>
</div>
<div class="weather py-2">Sol</div>
<div class="low-high">22°c / 23°c</div>
</div>
<div class="card-footer bg-white">
<div class="input-group">
<input
type="text"
class="form-control bg-light"
placeholder="Buscar Local"
aria-label="Recipient's username"
aria-describedby="button-addon2"
/>
<div class="input-group-append">
<button
class="btn btn-outline-warning text-dark"
type="button"
id="button-addon2"
>
<i class="fas fa-search"></i>
</button>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/f0e17cbf2f.js"
crossorigin="anonymous"
></script>
</body>
</html>