-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
41 lines (32 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/styles.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> About Three Recipes</title>
</head>
<body>
<div class="title">
<h1>Three Recipes</h1>
</div>
<div class="buttons">
<button>
<a href="index.html">Home</a>
</button>
<button>
<a href="recipes/recipes.html">Recipes</a>
</button>
<button>
<a href="about.html">About</a>
</button>
</div>
<div class="page-heading">
<h2>About Three Recipes</h2>
</div>
<div>
<p>Three recipes is a simple website, where you will find exactly three recipes. Why? Why not?</p>
</div>
</body>
</html>