-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (58 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Setting the name of WebPage-->
<title>CookerShooker - Cool It's Easy</title>
<!-- Linking this html file with the css file-->
<link rel="stylesheet" href="style.css">
<!-- Adding the font named 'Montserrat' from Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Making the Background-->
<div class="bg">
<!-- Creating the Navigation bar-->
<div class="nav">
<!-- Adding the 'arrow' and the 'cross' icon image-->
<img class="open_menu" src="assets/arrow.webp">
<img class="close_menu" src="assets/cross.webp">
<!-- Creating an unordered list of the Navigation menu items-->
<ul>
<!-- Adding the list items of the Navigation bar-->
<li>Home</li>
<li>About</li>
<li>Contact</li>
<li>Contests</li>
</ul>
</div>
<!-- Logo image-->
<div class="logo_container">
<a href="http://cookershooker.co.in"><img class="logo" src="assets/full%20logo.webp"></a>
</div>
<!-- Creating the Menu-->
<div class="menu">
</div>
<!-- Main Content of the Page-->
<div class="panel">
<!-- Adding the images for the menu in the panel-->
<img class="fast_food" src="assets/fast%20food%20box.webp">
<img class="todays_menu" src="assets/todays%20menu%20box.webp">
<img class="videos" src="assets/videos%20box.webp">
<img class="out_of_the_box" src="assets/out%20of%20the%20box%20box.webp">
<img class="special_menu" src="assets/special%20menu%20box.webp">
<img class="contests" src="assets/contests%20box.webp">
</div>
<div class="copyright">
<!-- Adding the copyright mark-->
<h1>Copyright © 2019-2020 </h1>
<h2>cookershooker.co.in</h2>
<!-- Adding Druh.in mark-->
<h3>Made by</h3>
<!-- Linking it with Druhin's Portfolio Website-->
<a href="https://druh.in">
<img class="druhin" src="assets/druh.in.webp"></a>
</div>
</div>
</body>
</html>