|
1 | | -<!DOCTYPE html> <!-- Declares this document as HTML5, telling the browser how to interpret it --> |
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
2 | 3 |
|
3 | | -<html lang="en"> <!-- Root element of the HTML page; lang="en" sets the primary language to English --> |
4 | | - |
5 | | -<head> <!-- Head section contains metadata, links, and the title of the page --> |
6 | | - <meta charset="UTF-8"> <!-- Sets character encoding to UTF-8 for supporting all characters --> |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8"> |
7 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
8 | | - <!-- Makes the site responsive on mobile devices --> |
9 | | - <title>StoryWhiteBlue</title> <!-- Title of the webpage, displayed in browser tab --> |
10 | | - <link rel="stylesheet" href="style.css"> <!-- Links external CSS file for styling the page --> |
| 7 | + <title>StoryWhiteBlue</title> |
| 8 | + <link rel="stylesheet" href="style.css"> |
11 | 9 | <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap" rel="stylesheet"> |
12 | | - <!-- Imports "Poppins" font from Google Fonts --> |
13 | 10 | </head> |
14 | 11 |
|
15 | | -<body> <!-- Body section contains all visible content of the webpage --> |
| 12 | +<body> |
16 | 13 |
|
17 | 14 | <!-- HEADER --> |
18 | | - <header> <!-- Represents the header of the page, usually contains logo and navigation --> |
19 | | - <h1 class="cooltitle">StoryWhiteBlue</h1> <!-- Main heading of the page with a CSS class "cooltitle" --> |
20 | | - <nav class="main-nav"> <!-- Navigation section with class "main-nav" --> |
21 | | - <a href="#" id="Home">Homepage</a> <!-- Navigation link to homepage --> |
22 | | - <a href="#" id="About">About Me</a> <!-- Navigation link to About Me section --> |
| 15 | + <header> |
| 16 | + <h1 class="cooltitle">StoryWhiteBlue</h1> |
| 17 | + <nav class="main-nav"> |
| 18 | + <a href="#" id="Home">Homepage</a> |
| 19 | + <a href="#" id="About">About Me</a> |
23 | 20 | </nav> |
24 | 21 | </header> |
25 | 22 |
|
26 | 23 | <!-- MAIN CONTENT --> |
27 | | - <main> <!-- Main content section of the page --> |
28 | | - |
| 24 | + <main> |
29 | 25 | <!-- Home section --> |
30 | 26 | <div id="mainContent" class="center home-style"> |
31 | | - <!-- A div with id "mainContent" and classes "center" and "home-style" for styling --> |
32 | | - <p>Explore, Read, and Enjoy your journey through our stories</p> <!-- A paragraph with introductory text --> |
| 27 | + <p>Explore, Read, and Enjoy your journey through our stories</p> |
33 | 28 | </div> |
34 | 29 |
|
35 | 30 | <!-- About Me section --> |
36 | | - <div id="aboutMe"></div> <!-- Empty div with id "aboutMe", probably filled dynamically with JavaScript --> |
| 31 | + <div id="aboutMe"></div> |
37 | 32 |
|
38 | 33 | <!-- Right sidebar menu --> |
39 | | - <aside id="Sag"> <!-- Sidebar container with id "Sag" (means "right" in Turkish) --> |
40 | | - <ul id="sectionList"> <!-- Unordered list to display sections --> |
| 34 | + <aside id="Sag"> |
| 35 | + <ul id="sectionList"> |
41 | 36 | <li data-section="kotuAdam">The Legend of Alsbans</li> |
42 | | - <!-- List item with a custom data attribute "data-section" used for JS interactions --> |
43 | 37 | </ul> |
44 | 38 | </aside> |
| 39 | + |
| 40 | + <!-- Pagination --> |
| 41 | + <div id="pagination"> |
| 42 | + <button id="prev">< Prev</button> |
| 43 | + <input type="number" id="pageNumber" min="1" value="1"> |
| 44 | + <button id="next">Next ></button> |
| 45 | + </div> |
45 | 46 | </main> |
46 | 47 |
|
47 | 48 | <!-- FOOTER --> |
48 | | - <footer class="impressum"> <!-- Footer section with class "impressum" for legal information --> |
| 49 | + <footer class="impressum"> |
49 | 50 | <div class="left"> |
50 | | - Impressum – Legal Notice <!-- Left section of the footer with legal text --> |
| 51 | + Impressum – Legal Notice |
51 | 52 | <a href="https://github.com/ErkanSoftwareDeveloper" target="_blank" class="github-link-footer"> |
52 | | - <!-- Link to GitHub profile, opens in a new tab --> |
53 | 53 | <img src="github-mark-white.svg" alt="GitHub" class="github-icon-footer"> |
54 | | - <!-- GitHub logo image in the footer --> |
55 | 54 | </a> |
56 | 55 | </div> |
57 | 56 | <div class="center"> |
58 | | - Operator (§ 55 Abs. 2 RStV):<br> <!-- Center section with operator info --> |
| 57 | + Operator (§ 55 Abs. 2 RStV):<br> |
59 | 58 | Erkan, Berlin, Germany<br> |
60 | | - Email:erkansoftwaredeveloper@gmail.com |
| 59 | + Email: erkansoftwaredeveloper@gmail.com |
61 | 60 | </div> |
62 | 61 | <div class="right"> |
63 | | - Legal Disclaimer:<br> <!-- Right section with legal disclaimer --> |
| 62 | + Legal Disclaimer:<br> |
64 | 63 | This website is a non-commercial personal publication.<br> |
65 | 64 | All content is protected by copyright.<br> |
66 | 65 | No liability is assumed for external links. |
67 | 66 | </div> |
68 | 67 | </footer> |
69 | 68 |
|
70 | | - <script src="script.js"></script> <!-- Links an external JavaScript file "script.js" for dynamic behavior --> |
71 | | - |
| 69 | + <script src="script.js"></script> |
72 | 70 | </body> |
73 | 71 |
|
74 | 72 | </html> |
0 commit comments