-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·81 lines (79 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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>Loop 1 - Step 1</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="devices-block">
<div class="device-block devices-block__item">
<div class="device-block__img">
<img src="img/device.svg" alt="Mobile">
</div>
<h3 class="device-block__header">Mobile</h3>
<p class="device-block__description">
Get notification about new
</p>
<p class="device-block__description">
releases in our mobile app.
</p>
<div class="device-block__price price-block">
<p class="price-block__sybmol">$</p>
<p class="price-block__value">10</p>
<p class="price-block__period">/month</p>
</div>
</div>
<div class="device-block devices-block__item">
<div class="device-block__img">
<img src="img/laptop.svg" alt="Laptop">
</div>
<h3 class="device-block__header">Laptop</h3>
<p class="device-block__description">
Enjoy new episodes on your laptop
</p>
<p class="device-block__description">
in browser with our web services,
</p>
<p class="device-block__description">
which supports all the platforms.
</p>
<div class="device-block__price price-block">
<p class="price-block__sybmol">$</p>
<p class="price-block__value">15</p>
<p class="price-block__period">/month</p>
</div>
</div>
<div class="device-block devices-block__item">
<div class="device-block__img">
<img src="img/monitor.svg" alt="Monitor">
</div>
<h3 class="device-block__header">Tv</h3>
<p class="device-block__description">
Watch your favorite series at home
</p>
<p class="device-block__description">
on large screen with our TV
</p>
<p class="device-block__description">
application
</p>
<div class="device-block__price price-block">
<p class="price-block__sybmol">$</p>
<p class="price-block__value">20</p>
<p class="price-block__period">/month</p>
</div>
</div>
</div>
<!--
Welcome to your first asset!
You could've noticed there is a link to Roboto font in the head.
You can use it in css by typing font-family: Roboto, sans-serif;
and you can customize it by using font-weight (400, 500 etc. - numbers in the link tag)
Good luck and have fun!
-->
</body>
</html>