Skip to content

Commit 6e16671

Browse files
Update index.html
1 parent 1e0836d commit 6e16671

1 file changed

Lines changed: 30 additions & 32 deletions

File tree

index.html

Lines changed: 30 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,72 @@
1-
<!DOCTYPE html> <!-- Declares this document as HTML5, telling the browser how to interpret it -->
1+
<!DOCTYPE html>
2+
<html lang="en">
23

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">
76
<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">
119
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap" rel="stylesheet">
12-
<!-- Imports "Poppins" font from Google Fonts -->
1310
</head>
1411

15-
<body> <!-- Body section contains all visible content of the webpage -->
12+
<body>
1613

1714
<!-- 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>
2320
</nav>
2421
</header>
2522

2623
<!-- MAIN CONTENT -->
27-
<main> <!-- Main content section of the page -->
28-
24+
<main>
2925
<!-- Home section -->
3026
<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>
3328
</div>
3429

3530
<!-- About Me section -->
36-
<div id="aboutMe"></div> <!-- Empty div with id "aboutMe", probably filled dynamically with JavaScript -->
31+
<div id="aboutMe"></div>
3732

3833
<!-- 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">
4136
<li data-section="kotuAdam">The Legend of Alsbans</li>
42-
<!-- List item with a custom data attribute "data-section" used for JS interactions -->
4337
</ul>
4438
</aside>
39+
40+
<!-- Pagination -->
41+
<div id="pagination">
42+
<button id="prev">&lt; Prev</button>
43+
<input type="number" id="pageNumber" min="1" value="1">
44+
<button id="next">Next &gt;</button>
45+
</div>
4546
</main>
4647

4748
<!-- FOOTER -->
48-
<footer class="impressum"> <!-- Footer section with class "impressum" for legal information -->
49+
<footer class="impressum">
4950
<div class="left">
50-
Impressum – Legal Notice <!-- Left section of the footer with legal text -->
51+
Impressum – Legal Notice
5152
<a href="https://github.com/ErkanSoftwareDeveloper" target="_blank" class="github-link-footer">
52-
<!-- Link to GitHub profile, opens in a new tab -->
5353
<img src="github-mark-white.svg" alt="GitHub" class="github-icon-footer">
54-
<!-- GitHub logo image in the footer -->
5554
</a>
5655
</div>
5756
<div class="center">
58-
Operator (§ 55 Abs. 2 RStV):<br> <!-- Center section with operator info -->
57+
Operator (§ 55 Abs. 2 RStV):<br>
5958
Erkan, Berlin, Germany<br>
60-
Email:erkansoftwaredeveloper@gmail.com
59+
Email: erkansoftwaredeveloper@gmail.com
6160
</div>
6261
<div class="right">
63-
Legal Disclaimer:<br> <!-- Right section with legal disclaimer -->
62+
Legal Disclaimer:<br>
6463
This website is a non-commercial personal publication.<br>
6564
All content is protected by copyright.<br>
6665
No liability is assumed for external links.
6766
</div>
6867
</footer>
6968

70-
<script src="script.js"></script> <!-- Links an external JavaScript file "script.js" for dynamic behavior -->
71-
69+
<script src="script.js"></script>
7270
</body>
7371

7472
</html>

0 commit comments

Comments
 (0)