-
Notifications
You must be signed in to change notification settings - Fork 0
/
donut.html
99 lines (92 loc) · 4.38 KB
/
donut.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/donut.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Bowlby One SC' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Fanwood Text' rel='stylesheet'>
<title>Donuts - Dolly </title>
</head>
<body id="full">
<nav id='navbar' class="navbar navbar-expand-lg bg-warning navbar-dark" >
<h1 class="header">Dolly Donuts</h1>
<button id='toggle' class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class=" navbar-nav header_link">
<li class="nav-item active">
<a class="nav-link" style="padding-right: 80px;" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" style="padding-right: 40px;" href="donut.html">Donuts</a>
</li>
<li>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
</ul>
</div>
</nav><br><br>
<div class="choco">
<h3 id="h3_style" class="h3_style">Recommended</h3><br>
<div class="card">
<div id="card1" class=" card_style">
<img class="card-img-top card_img" src="images/8.jpg" alt="Card image">
<div></div>
<div class="card-body">
<h4 id="card_head1" class="card-title card_head" style="font-weight: bold;">Chocolate Frosted Doughnut</h4>
<p id="card_text1" class="card-text">Chocolate Glazed Donut is delicious, yeasted, fluffy, fried, and
everything that makes a storebought Dunkin' donut so good.<br>₹ 30</p>
</div>
</div>
</div><br><br>
<div class="card">
<div id="card2" class=" card_style">
<img class="card-img-top card_img" src="images/9.jpg" alt="Card image">
<div></div>
<div class="card-body">
<h4 id="card_head2" class="card-title card_head" style="font-weight: bold;">Cruller</h4>
<p id="card_text2" class="card-text">A French cruller is a fluted, ring-shaped doughnut made from
choux pastry with a light airy texture.<br>₹ 40</p>
</div>
</div>
</div><br><br>
<div class="card">
<div id="card3" class=" card_style">
<img class="card-img-top card_img" src="images/10.jpg" alt="Card image">
<div></div>
<div class="card-body">
<h4 id="card_head3" class="card-title card_head" style="font-weight: bold;">Strawberry Frosted Doughnut</h4>
<p id="card_text3" class="card-text">Spongey white cake doughnuts are topped with a fresh strawberry glaze
for a sweet breakfast treat!.<br>₹ 50</p>
</div>
</div>
</div><br><br>
<div class="card">
<div id="card4" class=" card_style">
<img class="card-img-top card_img" src="images/11.jpg" alt="Card image">
<div></div>
<div class="card-body">
<h4 id="card_head4" class="card-title card_head" style="font-weight: bold;">Jelly Doughnut</h4>
<p id="card_text4" class="card-text">A jelly doughnut or jam doughnut, is a doughnut filled with
jam filling. <br>₹ 20</p>
</div>
</div>
</div>
</div>
<br><br>
<button id="view_btn" class="view_btn" >
<a href="more.html" class="view_a">View More</a>
</button><br><br><br><br>
<script src="./js/donut.js" ></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>