-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
115 lines (112 loc) · 3.6 KB
/
about.html
File metadata and controls
115 lines (112 loc) · 3.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Chronos</title>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: 'Georgia', serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
background-color: bisque;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #3c3c3c;
color: #f4f1ea;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
background-color: rgb(104, 104, 104);
padding: 10px 0;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
text-align: center;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: #f4f1ea;
text-decoration: none;
font-size: 1.1em;
}
.about-section {
background-color: #fff;
padding: 40px 20px;
border-radius: 10px;
margin: 20px auto;
max-width: 1200px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about-section h2 {
font-size: 2.5em;
color: #3c3c3c;
margin-bottom: 20px;
}
.about-section p {
font-size: 1.2em;
color: #333;
line-height: 1.6;
}
footer {
background-color: #3c3c3c;
color: #f4f1ea;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Chronos</h1>
<p>Your Gateway to the Past</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="ancient.html">Ancient</a></li>
<li><a href="#">Medieval</a></li>
<li><a href="#">Modern</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</nav>
<main>
<section class="about-section">
<div class="container">
<h2>About Chronos</h2>
<p>Chronos is your dedicated source for exploring the past, where history comes alive through thought-provoking articles, in-depth analyses, and captivating narratives. Our goal is to bring the richness of ancient, medieval, and modern history to your fingertips, offering a fresh perspective on the events that have shaped our world.</p>
<p>Whether you're a history enthusiast or just curious about the past, Chronos provides engaging content across a variety of topics—from the intellectual battles of ancient philosophers to the transformative events of modern times. Join us on a journey through time and gain a deeper understanding of the moments that defined civilizations.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Chronos History Magazine. All rights reserved.</p>
</div>
</footer>
</body>
</html>