-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>V++ Programming Language</title>
<link href="styles.css" rel="stylesheet"/>
<link rel="shortcut icon" type="image/png" href="./rec/V++.png"/>
</head>
<body>
<div class="top-bar">
<button class="tablinks" id="home" onclick="openTab(event, 'Home')"><img id="home-icon" src="./rec/V++.png" alt="" width="50px" height="50px"/></button>
<button class="tablinks" onclick="openTab(event, 'About')">About</button>
<button class="tablinks" onclick="openTab(event, 'Sandbox')">SandBox</button>
<button class="tablinks" onclick="openTab(event, 'Download')">Download</button>
</div>
<div id="Home" class="tabcontent">
<h1>Home</h1>
</div>
<div id="About" class="tabcontent">
<h1>About</h1>
</div>
<div id="Sandbox" class="tabcontent">
<h1>Sandbox</h1>
</div>
<div id="Download" class="tabcontent">
<h1>Download</h1>
</div>
<script src="main.js"></script>
</body>
</html>