forked from gfrancischelli/itelios-frontend-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.04 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta chartset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>Itelios Front-end Challenge</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed" rel="stylesheet">
<link href="site.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-1">
<h2>Você visitou:</h2>
<div id="visited"></div>
</div>
<div class="col-3">
<h2>e talvez se interesse por:</h2>
<div id="recommendation" class="row"></div>
<ul id="recommendation-pagination" class="pagination"></ul>
</div>
</div>
</div>
<script src="dist/index.js"></script>
<script>
</script>
</body>
</html>