-
Notifications
You must be signed in to change notification settings - Fork 0
/
lights.html
47 lines (46 loc) · 1.48 KB
/
lights.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="../static/css/style.css">
<title>Kalkulator efektywności energetycznej dla inteligentnych domów</title>
</head>
<body>
<header class="header">
<div class="header__text">
<h1>Oblicz efektywność energetyczną swojego domu!</h1>
<p>Wykaż inicjatywę i rozwiąż problem nadmiernego zużycia energii!</p>
</div>
</header>
<main>
{% block content %}
<h2 class="main__title">Wybierz, ile lamp znajduje się w Twoim domu:</h2>
<ul class="list" id="list">
<li class="list__item">
<a href={{size + "/3" }}>
<img class="item__img" src="../static/img/light.svg" alt="light">
<span>2-4 lamp</span></a>
</li>
<!--Assignment #2 -->
<li class="list__item">
<a href="{{Set a route with the coefficient of 7}}">
<img class="item__img" src="../static/img/light.svg" alt="light">
<span>4-6 lamp</span></a>
</li>
<li class="list__item">
<a href="{{Set the route with the coefficient of 10}}">
<img class="item__img" src="../static/img/light.svg" alt="light">
<span>8+ lamp</span></a>
</li>
</ul>
{% endblock %}
</main>
<footer>
</footer>
</body>
</html>