-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (48 loc) · 1.67 KB
/
index.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
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet">
<!-- Simple css -->
<link rel="stylesheet" href="Styles/styles.css">
<!-- Tab Icon -->
<link rel="icon" type="image/x-icon" href=images\spoon-and-fork.png>
<title>Project: Recipes</title>
</head>
<body>
<header>
<h1>Odin Recipes</h1>
</header>
<!-- Search function for testing -->
<script async src="https://cse.google.com/cse.js?cx=979d6cbb4c7cf4bbd">
</script>
<div class="gcse-search"></div>
<main>
<h2>About This Page</h2>
<p>This is a simple HTML page created as an example. It includes basic HTML elements to demonstrate structure.
</p>
<h3>Image Example</h3>
<img src="images/Food.jpg" alt="Food image">
<section>
<h2>Recepies</h2>
<ul>
<li><a href="Egg-Drop-Soup.html">Egg Drop Soup</a></li>
<li><a href="Sesame-Ginger-Noodle-Salad.html">Sesame Ginger Noodle Salad</a></li>
<li><a href="Chinese-Hot-and-Sour-Soup.html">Chinese Hot and Sour Soup
</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Project: Recipes</p>
</footer>
</body>
<!--
Reconfigure the images. Need to use some free websites!
-->
</html>