-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 1.14 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
<!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" />
<!-- Need this adapter for es5 - https://github.com/webcomponents/webcomponentsjs#custom-elements-es5-adapterjs -->
<script src="./node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script>
</head>
<body>
<script src="./src/index.js"></script>
</body>
<body>
<div class="price-cards">
<price-card title="MOBILE" img="device" desc="Get notifications about new releases in our mobile app." price="10"></price-card>
<price-card title="DESKTOP" img="laptop" desc="Enjoy new episodes on your laptop in browser with our web service, which supports all the platforms." price="15"></price-card>
<price-card title="TV" img="monitor" desc="Watch your favorite series at home on large screen with our TV application." price="20"></price-card>
</div>
</body>