forked from hack4impact-calpoly/bootcamp-grocery-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.38 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="styles/index.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<meta charset="utf-8">
</head>
<body>
<main>
<header>
<h1><a href="index.html">Anna's Recipes</a></h1>
<nav>
<a href="pages/recipes.html">Recipes</a>
<a href="pages/randomrecipe.html">Random Recipe</a>
<a href="pages/about.html">About Me</a>
</nav>
</header>
<img class="intro-img" src="images/homefood.jpg" alt="food">
<div clas="circle-img-flex">
<img class="circle-img"src="images/anna.png" alt="anna">
</div>
<div class="box1">
<p>Welcome to my recipe website! This website features a compilation of some of my mom's recipes that she has collected over the years. I haven't learned how to cook most of them, unfortunately, but it's a goal of mine to work harder on making myself delicious food! I hope you enjoy this website!
</p>
</div>
<div class="buttons">
<button id="recipebutton" class="button">Recipes</button>
<button id="aboutbutton" class="button">More About Me</button>
</div>
</main>
</body>
<footer class="footer">Made by Anna Reid:)</footer>
</html>
<script src="actions/index.js"></script>