-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (51 loc) · 1.19 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Food for Fools</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #f1c40f;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
h1 {
margin: 0;
font-size: 24px;
}
nav {
background-color: #34495e;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 10px;
}
main {
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Food for Fools</h1>
</header>
<nav>
<a href="home.html">Home</a>
<a href="about.html">About</a>
</nav>
<main>
<h2>About Food for Fools</h2>
<p>Food for Fools is a recipe website that offers simple, easy-to-follow recipes for everyone. Whether you're a beginner cook or a seasoned chef, our collection of delicious recipes is sure to satisfy your taste buds and make cooking fun and enjoyable.</p>
</main>
</body>
</html>