-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<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>Sprint 5</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<img class="imgsvg1" src="imgsvg1.svg" alt="">
<img class="imgsvg2" src="imgsvg2.svg" alt="">
<div class="weather">
<img src="" alt="" class="weather__icon" id="weather-icon">
<p class="weather__temp" id="weather-temp"></p>
<p class="weather__city" id="weather-city"></p>
</div>
<div class="card">
<h2 class="card__title">Preparat per riure?</h1>
<p class="card__text" id="card-text"></p>
<div class="card__score-buttons">
<button class="button-score" data-score="1" disabled>😃</button>
<button class="button-score" data-score="2" disabled>😐</button>
<button class="button-score" data-score="3" disabled>😀</button>
</div>
<button class="button-next" id="button-next">Seguent acudit</button>
</div>
<script src="index.js"></script>
</body>
</html>