-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html~
executable file
·59 lines (50 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
</style>
<head>
<link rel="stylesheet" href="style.css">
<title>Digital Portfolio</title>
</head>
<body>
<div class="buttons">
<button onclick="dropdown()" class="dropbtn">Journals</button>
<div id="journals" class="dropdown-content">
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1002.html">J1002</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1006.html">J1006</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1012.html">J1012</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1013.html">J1013</a>
</div>
<button onclick="location.href='/users/rohit-bhupathiraju/Digital Portfolio';" class="dropbtn">About Me</button>
<button onclick="location.href='/users/rohit-bhupathiraju/Digital Portfolio/important.html';" class="dropbtn">Why This Is Important</button>
<button onclick="location.href='/users/rohit-bhupathiraju/Digital Portfolio/CS-I';" class="dropbtn">CS-I</button>
</div>
<h1 style="font-family: 'Roboto', sans-serif; text-align: center;">Rohit Bhupathiraju - Digital Portfolio</h1>
<br>
<div class="aboutMe">
<h1 style="font-size: 30px;">About Me: </h1>
<p>Hobbies - Programming, Videogames, Tennis</p>
<p>Birthday - March 6, 2007</p>
<p>Hobbies - Coding, Videogames</p>
<p>Another Program I made in the Past - <a href='https://toysfortexans-g474t5z3lq-uc.a.run.app/' target="_blank">Grant Software for a Nonprofit</a></p>
</div>
<script>
function dropdown() {
document.getElementById("journals").classList.toggle("show");
}
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
</body>
</html>