-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.16 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Blog Title</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
color: #333;
}
.post {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<h1>Welcome to My Blog</h1>
<div class="post">
<h2>My First Post</h2>
<p>Yesterday at school we started reading the book Frankenstein written by Mary Shelley published over 200 years ago. So far the story involves this captian of a ship who is sailing with his crew near the arctic where they find a peculiar sight. They find a half frozen to death man on the ice. They eventually nurse him back to life where he then recounts the story of why he was this far north to the captian. This is where the person has a flashback which starts the main story of the book. So far the book is pretty good though I haven't gotten very far and am only on chapter 1.</p>
</div>
</body>
</html>