forked from devs-toni/assembler-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.39 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
<!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">
<meta name="description" content="Blog created with API and Bootstrap">
<meta name="keywords" content="HTML, CSS, JavaScript, API">
<meta name="author" content="Pablo and Joe">
<link rel="stylesheet" href="styles.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous" defer></script>
<script type="text/javascript" src="blog.js" defer></script>
<title>Blog with API</title>
</head>
<body>
<header class="bg-info p-3">
<h1 class="container">My Blog</h1>
</header>
<main class="container mt-5 mb-5">
<div class="blogSection">
</div>
</main>
<footer class="bg-info p-4 ">
<div class="container">
<p class="text-center">Copyright © 2022 Pablo and Joe. All rights reserved.</p>
</div>
</footer>
</body>
</html>