-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
67 lines (58 loc) · 2.02 KB
/
Home.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
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="bg" class="head">
<nav class="navbar">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#fff" stroke-width="5" />
<path d="M0,14 30,14" stroke="#fff" stroke-width="5" />
<path d="M0,23 30,23" stroke="#fff" stroke-width="5" />
</svg>
</a>
</span>
<ul class="navbar-nav">
<li><a href="signup.html">Signup</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="home.html">Home</a>
<a href="firstaid.html">First Aid</a>
<a href="">Appointment</a>
<a href="">About</a>
<a href="">Services</a>
<a href="contact.html">Contact</a>
</div>
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="home.html">Home</a>
<a href="firstaid.html">First Aid</a>
<a href="">Appointment</a>
<a href="">About</a>
<a href="">Services</a>
<a href="contact.html">Contact</a>
</div>
<div id="main">
<p class="heading" style="margin-left: 30px;">
Virtual <br />
Medical Home
</p>
<p class="sbheading" style="margin-left: 30px;">The Online Medical services</p>
</div>
</div>
<div class="main-content"></div>
<script>
function openSlideMenu() {
document.getElementById("side-menu").style.width = "250px";
}
function closeSlideMenu() {
document.getElementById("side-menu").style.width = "0";
}
</script>
</body>
</html>