-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.55 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sidebar Testing</title>
<link rel="stylesheet" href="styles1.css">
<script src="sideJS.js"></script>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class = "sideMenu" id = "sideMenu">
<a href="javascript:voide(0)" class="closeBtn" onclick="closeNav()">
x
</a>
<div class="mainMenu">
<h2>Tech Learning Site</h2>
<a href = "javascript:voide(0)" onclick="showContent('Home')"> Home</a>
<a href = "javascript:voide(0)" onclick="showContent('About Us')"> About Us</a>
<a href = "javascript:voide(0)" onclick="showContent('Lessons')"> Lessons</a>
<a href = "javascript:voide(0)" onclick="showContent('Your badges')"> Your badges</a>
<a href = "javascript:voide(0)" onclick="showContent('Quizes')"> Quizes</a>
<a href = "javascript:voide(0)" onclick="showContent('Services')"> Services</a>
<a href = "javascript:voide(0)" onclick="showContent('Contact')"> Contact</a>
</div>
</div>
<div class = "contentArea" id = "contentArea">
<span class = "open-icon" onclick="openNav()">≡</span>
<div class = "contentText">
<h2 class ="contentTitle" id = "contentTitle">
Toggle Sidebar
</h2>
<h3>HTML, CSS, JS</h3>
</div>
</div>
</body>
</html>