-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
46 lines (41 loc) · 1.12 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="img\logo.png">
<title>AlkaBlog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="img\logo.png" alt="logo do blog">
<h1>AlkaBlog</h1></div>
</header>
<main>
<div id="posts-container">
<h2>Posts</h2>
<div class="postdown">
<ul id="posts-list"></ul>
</div>
<button id="new-post-button">Novo Post</button>
</div>
<div id="post-details" class="hidden">
</div>
</main>
<footer>
<div class="container">
<div class="row">
<div class="col-md-6 text-right">
<a href="#">Início</a>
<a href="#">About</a>
</div>
<div class="col-md-6 text-center">
<p>Frota 2023 © Todos os direitos reservados</p>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>