-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (83 loc) · 3.42 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
<!DOCTYPE html>
<head>
<title>
SRO - Shri Ram Organization
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="lib/style.css">
</head>
<body>
<div class="header">
<div class="nav">
<img src="img/logo1.png" class="logo">
<a href="signup.html" class="button">Sign Up</a>
</div>
<div class="main">
<h2>Proudly Introducing,</h2>
<h2>
<span>S</span><span>hri</span>
<span>R</span><span>am</span>
<span>O</span><span>rganization</span>
</h2></br>
<a href="contactus.html" class="button">contact Us</a>
</div>
<div class="sidebar" id="sidebar">
<button onclick="openf()" id="openbtn" class="btn"><i class="fa fa-bars" aria-hidden="true"></i></button>
<button onclick="closef()" id="closebtn" class="btn"><i class="fa fa-times" aria-hidden="true"></i></button>
<div class="icon1">
<img src="img/fb.png" class="icon">
<img src="img/tw.png" class="icon">
<img src="img/ig.png" class="icon">
</div>
<div class="icon2">
<img src="img/share.png" class="icon">
<img src="img/info.png" class="icon">
</div>
</div>
<div id="menubar" class="menubar">
<img src="img/logo1.png" class="logo">
<div class="links">
<div class="linkbar">
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Products</a>
<a href="#">Get Premium</a>
<a href="#">Download</a>
<a href="#">Contact Us</a>
</div>
<a href="signup.html" class="button">Sign Up</a>
</div>
</div>
<div class="bubble">
<img src="img/bubble.png" class="1">
<img src="img/bubble.png" class="2">
<img src="img/bubble.png" class="3">
<img src="img/bubble.png" class="4">
<img src="img/bubble.png" class="5">
<img src="img/bubble.png" class="6">
<img src="img/bubble.png" class="7">
<img src="img/bubble.png" class="8">
<img src="img/bubble.png" class="9">
</div>
</div>
</body>
</html>
<script>
function openf()
{
document.getElementById("menubar").style.width='70vw';
document.getElementById("sidebar").style.backgroundColor='transparent';
document.getElementById("closebtn").style.display='block';
document.getElementById("openbtn").style.display='none';
}
function closef()
{
document.getElementById("menubar").style.width='0px';
document.getElementById("sidebar").style.backgroundColor='rgba(0, 0, 0, 0.500)';
document.getElementById("openbtn").style.display='block';
document.getElementById("closebtn").style.display='none';
}
</script>