-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
111 lines (100 loc) · 3.62 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>
<!-- Created By CodingNepal - www.codingnepalweb.com -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Mega Menu | CodingNepal</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
</head>
<body>
<nav>
<div class="wrapper">
<div class="logo"><a href="#">CodingNepal</a></div>
<input type="radio" name="slider" id="menu-btn">
<input type="radio" name="slider" id="close-btn">
<ul class="nav-links">
<label for="close-btn" class="btn close-btn"><i class="fas fa-times"></i></label>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li>
<a href="#" class="desktop-item">Dropdown Menu</a>
<input type="checkbox" id="showDrop">
<label for="showDrop" class="mobile-item">Dropdown Menu</label>
<ul class="drop-menu">
<li><a href="#">Drop menu 1</a></li>
<li><a href="#">Drop menu 2</a></li>
<li><a href="#">Drop menu 3</a></li>
<li><a href="#">Drop menu 4</a></li>
</ul>
</li>
<li>
<a href="#" class="desktop-item">Mega Menu</a>
<input type="checkbox" id="showMega">
<label for="showMega" class="mobile-item">Mega Menu</label>
<div class="mega-box">
<div class="content">
<div class="row">
<img src="MugBoat.png" alt="">
</div>
<div class="row">
<header>Design Services</header>
<ul class="mega-links">
<li><a href="#">Graphics</a></li>
<li><a href="#">Vectors</a></li>
<li><a href="#">Business cards</a></li>
<li><a href="#">Custom logo</a></li>
</ul>
</div>
<div class="row">
<header>Email Services</header>
<ul class="mega-links">
<li><a href="#">Personal Email</a></li>
<li><a href="#">Business Email</a></li>
<li><a href="#">Mobile Email</a></li>
<li><a href="#">Web Marketing</a></li>
</ul>
</div>
<div class="row">
<header>Security services</header>
<ul class="mega-links">
<li><a href="#">Site Seal</a></li>
<li><a href="#">VPS Hosting</a></li>
<li><a href="#">Privacy Seal</a></li>
<li><a href="#">Website design</a></li>
</ul>
</div>
</div>
</div>
</li>
<li><a href="#">Feedback</a></li>
</ul>
<label for="menu-btn" class="btn menu-btn"><i class="fas fa-bars"></i></label>
</div>
</nav>
</head>
<style>
.myDiv {
max-width: 1225px;
max-height: 660px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
<div class="myDiv">
<img src="Image-5.png"
width="100%"
height="100%" />
</div>
<div style="width: 100%;">
<div style="width: 50%; height: 300px; float: left; ">
<img src="Image-6.png" alt="Cinque Terre" >
</div>
<div style="margin-left: 50%; height: 300px;">
<img src="Image-7.png" alt="Cinque Terre" >
</div>
</div>
</body>
</html>