-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.3 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
<!DOCTYPE html>
<script type="text/javascript" src="index.js"></script>
<html lang="en">
<head>
<title>Founders and Coders Single Page Website</title>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<div>
<div class=header>
<p>Founders and Coders Application Single Page Website</p>
</div>
<div>
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'CV')">Who I am</button>
<button class="tablinks" onclick="openTab(event, 'Prerequisites')">What I've learned from prerequisites</button>
<button class="tablinks" onclick="openTab(event, 'Links')">Links to other things</button>
</div>
<div id="CV" class="tabcontent active">
<script src="CV.js"></script>
</div>
<div id="Prerequisites" class="tabcontent inactive">
<script src="prerequisites.js"></script>
</div>
<div id="Links" class="tabcontent inactive">
<script src="links.js"></script>
</div>
</div>
<div class="footer">
<a href="https://www.freecodecamp.org/rohanss">freeCodeCamp</a>
<a href="https://www.codewars.com/users/RohanSSS">CodeWars</a>
<a href="https://github.com/RohanSSS/rohansss.github.io">Codebase</a>
<a href="https://codepen.io/rohansss/pen/REjxmo">Carousel</a>
</div>
</div>
</body>
</html>