-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (62 loc) · 2.14 KB
/
index.html
File metadata and controls
72 lines (62 loc) · 2.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StoryWhiteBlue</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap" rel="stylesheet">
</head>
<body>
<!-- HEADER -->
<header>
<h1 class="cooltitle">StoryWhiteBlue</h1>
<nav class="main-nav">
<a href="#" id="Home">Homepage</a>
<a href="#" id="About">About Me</a>
</nav>
</header>
<!-- MAIN CONTENT -->
<main>
<!-- Home section -->
<div id="mainContent" class="center home-style">
<p>Explore, Read, and Enjoy your journey through our stories</p>
</div>
<!-- About Me section -->
<div id="aboutMe"></div>
<!-- Right sidebar menu -->
<aside id="Sag">
<ul id="sectionList">
<li data-section="kotuAdam">The Legend of Alsbans</li>
</ul>
</aside>
<!-- Pagination -->
<div id="pagination">
<button id="prev">< Prev</button>
<input type="number" id="pageNumber" min="1" value="1">
<button id="next">Next ></button>
</div>
</main>
<!-- FOOTER -->
<footer class="impressum">
<div class="left">
Impressum – Legal Notice
<a href="https://github.com/ErkanSoftwareDeveloper" target="_blank" class="github-link-footer">
<img src="github-mark-white.svg" alt="GitHub" class="github-icon-footer">
</a>
</div>
<div class="center">
Operator (§ 55 Abs. 2 RStV):<br>
Erkan, Berlin, Germany<br>
Email: erkansoftwaredeveloper@gmail.com
</div>
<div class="right">
Legal Disclaimer:<br>
This website is a non-commercial personal publication.<br>
All content is protected by copyright.<br>
No liability is assumed for external links.
</div>
</footer>
<script src="script.js"></script>
</body>
</html>