Untitled
1 hour ago in Plain Text
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Online Ebook</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f4f4f4;
}
header {
background: #222;
color: white;
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 30px auto;
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 12px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
}
#ebook-content {
white-space: pre-line;
line-height: 1.6;
font-size: 18px;
}
.footer {
text-align: center;
margin-top: 40px;
padding: 20px;
background: #ddd;
}
</style>
</head>
<body>
<header>
<h1>My Online Ebook</h1>
<p>Author: Akpan Utibeabasi Michael</p>
</header>
<div class="container">
<h2>Book Title: Your Ebook Title</h2>
<div id="ebook-content">
<!-- Put your ebook text here -->
Chapter 1: The Beginning
Once upon a time...
(Add more chapters below.)
</div>
</div>
<div class="footer">
© <span id="year"></span> Akpan Utibeabasi Michael — All Rights Reserved.
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>