-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (102 loc) · 3.82 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
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
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project-1:Favourite Foods</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*
{
font-family: 'poppins',sans-serif;
margin: 0px;
background-color: whitesmoke;
scroll-behavior:smooth;
}
.nav-items{
padding: 14px 16px 14px 12px;
font-size: 20px;
font-weight: bold;
background-color: #8d8741;
text-decoration: none;
color: blueviolet;
}
.nav-items li{
display: inline-block;
}
.nav-items li a{
background-color: #8d8741;
padding: 14px 16px;
text-decoration: none;
}
.nav-items li a:hover{
background-color: rgb(241, 233, 233);
}
#list{
font-family: 'Times New Roman', Times, serif;
font-size: 24px;
margin: 20px 0px ;
font-weight: bold;
}
.food-list{
font-size: 20px;
}
.food-list a{
text-decoration: none;
}
.img{
padding-top: 30px;
width: 50%;
margin: auto;
text-align: center;
}
footer{
font-weight: bold;
text-align: center;
background-color: #8d8741;
margin-top: 20px;
padding-top: 20px;
padding-bottom: 20px;
}
</style>
</head>
<body>
<ul class="nav-items">
<li><a href="#">Index</a></li>
<li><a href="#">Food</a></li>
<li><a href="#">About</a></li>
</ul>
<div>
<h3 id="list">Top 5 favourite foods:</h3>
<ul>
<li class="food-list"><a href="#Dakbungalow Chicken Curry">Dakbungalow Chicken Curry</a></li>
<li class="food-list"><a href="#Grilled Chicken">Grilled Chicken</a></li>
<li class="food-list"><a href="#Chimichangas">Chimichangas</a></li>
<li class="food-list"><a href="#Dal Maharaja">Dal Maharaja</a></li>
<li class="food-list"><a href="#Burnt Garlic Fried">Burnt Garlic Fried</a></li>
</ul>
</div>
<div class="img" id="Dakbungalow Chicken Curry" >
<img style=" box-shadow:3px 5px 10px #8d8741;" src="https://blog.dineout-cdn.co.in/blog/wp-content/uploads/2018/02/shutterstock_561626611.jpg" width="500px" height="290px" alt="Dakbungalow Chicken Curry"/>
<p style="padding-top: 15px;">Dakbungalow Chicken Curry</p>
</div>
<div class="img" id="Grilled Chicken">
<img style=" box-shadow:3px 5px 10px #8d8741;" src="https://blog.dineout-cdn.co.in/blog/wp-content/uploads/2018/02/shutterstock_535315462.jpg" width="500px" height="290px" alt="Grilled Chicken"/>
<p style="padding-top: 15px;">Grilled Chicken</p>
</div>
<div class="img" id="Chimichangas">
<img style=" box-shadow:3px 5px 10px #8d8741;" src="https://blog.dineout-cdn.co.in/blog/wp-content/uploads/2018/02/shutterstock_1013551249.jpg" width="500px" height="290px" alt="Chimichangas"/>
<p style="padding-top: 15px;">Chimichangas</p>
</div>
<div class="img" id="Dal Maharaja">
<img style=" box-shadow:3px 5px 10px #8d8741;" src="https://blog.dineout-cdn.co.in/blog/wp-content/uploads/2018/02/shutterstock_200700773-1.jpg" width="500px" height="290px" alt="Dal Maharaja"/>
<p style="padding-top: 15px;">Dal Maharaja</p>
</div>
<div class="img" id="Burnt Garlic Fried">
<img style=" box-shadow:3px 5px 10px #8d8741;" src="https://blog.dineout-cdn.co.in/blog/wp-content/uploads/2018/02/shutterstock_692307586.jpg" width="500px" height="290px" alt="Burnt Garlic Fried"/>
<p style="padding-top: 15px;">Burnt Garlic Fried</p>
</div>
<footer>Copyright@Nagma AN</footer>
</body>
</html>