-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 1.39 KB
/
Copy pathindex.html
File metadata and controls
55 lines (52 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head> <!-- ===( CODE AASHU )=== -->
<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>CODE AASHU : Digital Agency</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="img/logo.png" alt="">
</div>
<div class="nav active">
<div class="close">
<img src="img/cross.png" alt="">
</div>
<ul>
<li>home</li>
<li>about</li>
<li>services</li>
<li>projects</li>
<li>contact</li>
</ul>
</div>
<div class="menu">
<img src="img/menu.png" alt="">
</div>
</header>
<div class="hero-section">
<div class="content">
<h1>we provide smart business solutions</h1>
<p>grow your business with us best business solutions</p>
</div>
<div class="hero-img">
<img src="img/mainimg.png" alt="">
</div>
</div>
<script src="jquery.js"></script>
<script>
$(jQuery).ready(function(){
$('.menu').click(function(){
$('.nav').removeClass('active');
})
$('.close').click(function(){
$('.nav').addClass('active');
})
})
</script>
</body>
</html>