-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.html
More file actions
75 lines (75 loc) · 2.95 KB
/
file.html
File metadata and controls
75 lines (75 loc) · 2.95 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
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
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunshine cafe menu log in</title>
<link rel="stylesheet" href="file.css">
</head>
<body>
<div class="menu">
<main><h1>Sundrop Cafe</h1>
<p class="text1">Created in 2022.</p><hr>
<section>
<h2>Main dish</h2>
<img src="cup.jpeg" alt="cup">
<article class="meal">
<p class="meal-one">Chicken sauce and rice</p><p class="price">1,000FCFA</p>
</article>
<article class="meal">
<p class="meal-one">Egg Omlets</p><p class="price">1,500FCFA</p>
</article>
<article class="meal">
<p class="meal-one">Spaghetti with sardines</p><p class="price">2,000FCFA</p>
</article>
<article class="meal">
<p class="meal-one">Chicken pizza</p><p class="price">2,500FCFA</p>
</article>
<article class="meal">
<p class="meal-one">Buggers</p><p class="price">700FCFA</p>
</article>
</section>
<section>
<h2>Desserts</h2>
<img src="cake.jpg" alt="cake">
<article class="meal">
<p class="meal-two">Eggrolls</p><p class="price">500FCFA</p>
</article>
<article class="meal">
<p class="meal-two">Chocolate cake</p><p class="price">200FCFA</p>
</article>
<article class="meal">
<p class="meal-two">Biscuits</p><p class="price">450FCFA</p>
</article>
<article class="meal">
<p class="meal-two">Fruit salad</p><p class="price">1,500FCFA</p>
</article>
<article class="meal">
<p class="meal-two">Sweets</p><p class="price">100FCFA</p>
</article>
</section>
</main><hr>
</div>
<div class="login">
<header><h1 class="sign">sign up</h1></header>
<form action="#" method="post">
<label for="firstname">First name:</label>
<input type="text" id="firstname"><br><br>
<label for="lastname">Last name:</label>
<input type="text" id="lastname"><br><br>
<label for="email">Email acc :</label>
<input type="text" id="email"><br><br>
<fieldset>
<legend>Gender</legend>
<input type="radio" name="sex" id="male" value="male">Male <br>
<input type="radio" name="sex" id="female" value="female">Female <br>
</fieldset>
<br><input type="submit" value="send"> <input type="reset">
</form>
</div> <hr>
<footer>
<p><a href="#">Visit our site</a></p>
<p class="place">We welcome you to our shop for more delicious menu</p>
</footer>
</body>
</html>