-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 887 Bytes
/
index.html
File metadata and controls
34 lines (30 loc) · 887 Bytes
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>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My Blog</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style/style.css" />
</head>
<body class="home-page">
<header>
<div class="profile-img"></div>
<div class="profile-name">Vincenzo Cassano</div>
<div class="subtext">Welcome to Cassano Family!</div>
</header>
<div class="add-post">
<a href="new-post.html">
<div class="nav-button new-post-button">+</div>
</a>
</div>
<div class="main">
<div class="main-container blog-posts"></div>
</div>
<footer>
<p>Made with 💗 by Vincenzo</p>
</footer>
<script src="js/index.js"></script>
</body>
</html>