-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (51 loc) · 1.46 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
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" >
<meta charset="UTF-8">
<title> Recipes</title>
</head>
<body>
<div class="heading">
<h1> Odin Recipes</h1>
</div>
<div class="picture">
<div class="recipes"> <h2> New Recipes Just Dropped!</h2>
<ul>
<li> <a href="./recipes/chicken.html" target="_blank" > Check out this Chicken Recipe!</a>
</li>
<li><a href="./recipes/lasagna.html" target="_blank">For the best Lasagna, click here!</a>
</li>
</div>
<div class="test">
<div class="one">
One </div>
<div class="two">
Two
</div>
<div class="three">
Three
</div>
</div>
<!--
<fieldset>
<legend><h2>Best food ever</h2></legend>
<form action ="https://freecatphotoapp.com/submit-cat-photo">
<fieldset>
<legend>What is going on</legend>
<label><input type="radio" id="indoor" name ="indoor-outdoor" value="indoor">Indoor</label>
<label><input type="radio" id="outdoor" name ="indoor-outdoor" value="outdoor">Outdoor</label>
</fieldset>
<fieldset>
<legend> What is your personality?</legend>
<label>
<input type="checkbox" id ="loving" value="loving" name="personality"> Loving
</label>
</fieldset>
</form>
</fieldset>
-->
</ul>
</div>
</body>
</html>