-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
38 lines (33 loc) · 1.06 KB
/
blog.html
File metadata and controls
38 lines (33 loc) · 1.06 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
<!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>My First Blog</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
<link rel="stylesheet" href="./assets/css/blog.css" />
<script defer src="./assets/js/logic.js" type="text/javascript"></script>
<script defer src="./assets/js/blog.js" type="text/javascript"></script>
</head>
<body class="light theme">
<header>
<h1>My First Blog</h1>
<div>
<button id="back" style="display: inline-block;">← Back</button>
<p id="toggle" style="display: inline;">☀️</p>
</div>
</header>
<main class="light theme">
<!-- <div class="card" id="container"></div> Container for dynamically created elements -->
</main>
<footer class="light theme">
<p id="love">Made with ♥️ by Jose Alfredo</p>
<ul>
<li>Portfolio</li>
<li>Blog</li>
<li>Email</li>
</ul>
</footer>
</body>
</html>