-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (54 loc) · 2.01 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
<!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>Retargeting Tech Test || JS</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<link href="./assets/style.css" rel="stylesheet" />
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- MAIN -->
<div id="main" class="py-4">
<!-- HEADER CONTAINER -->
<section id="header-container" class="container">
<!-- NAV CONTAINER -->
<div id="nav" class="container rounded-top text-bg-dark d-flex align-items-center">
<div class="container content-wrapper">
<img src="./assets/img/logo.png" alt="Retargeting Logo" id="logo" class="f-flex" />
</div>
</div>
<!-- BANNER CONTAINER -->
<div id="banner-container" class=""></div>
</section>
<!-- CONTENT CONTAINER -->
<section id="content-container" class="container">
<!-- CONTENT -->
<div id="content" class="py-5">
<div id="articles-wrapper" class="container content-wrapper mx-auto row"></div>
</div>
</section>
<!-- FOOTER CONTAINER -->
<section id="footer-container" class="container">
<div id="footer" class="container rounded-bottom"></div>
</section>
</div>
<script src="./assets/img/main.js" type="module"></script>
</body>
</html>