-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (32 loc) · 1.1 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
<!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">
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@200;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<title>BlogSpace</title>
</head>
<body>
<nav>
<h1>BlogSpace</h1>
</nav>
<main>
<div id="post_form">
<form id="new-post" action="">
<label for="post_title">Title</label>
<input type="text" name="" id="post_title">
<label for="post_body">Text</label>
<textarea name="" id="post_body"></textarea>
<button>Post</button>
</form>
</div>
<div id="blog_list"></div>
<footer id="credits">
By <a href="https://github.com/FernandaRicciardi" target="_blank" rel="noopener">Fernanda Ricciardi</a>
</footer>
</main>
<script src="index.js"></script>
</body>
</html>