-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportant.html
executable file
·75 lines (66 loc) · 3.39 KB
/
important.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
68
69
70
71
72
73
74
75
<!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>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1016.html">J1016</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1017.html">J1017</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1089.html">J1089</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1151.html">J1151</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1152.html">J1152</a>
<a href="/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Journals/J1153.html">J1153</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>
<button onclick="location.href='/users/rohit-bhupathiraju/Digital Portfolio/CS-II';" class="dropbtn">CS-II</button>
<button onclick="location.href='/users/rohit-bhupathiraju/Digital Portfolio/CS-I/Projects/ISP';" class="dropbtn">ISP</button>
</div>
<h1 style="font-family: 'Roboto', sans-serif; text-align: center;">Rohit Bhupathiraju</h1>
<br>
<div class="aboutMe">
<h1 style="font-size: 30px;">Why A Digital Portfolio Is important: </h1>
<p style="width: 700px">
This digital portfolio will be beneficial by not only serving as a way to organize my journals, but also act as a timeline for all the things I've done in the past.
<br>
<br>
In the future I will be able to look back on this and see all the ways that I've improved my skills.
<br>
<br>
Throughout my years in CS, I will be able to look back on these journals and compare the knowledge I had then to the knowledge that I will inevitabaly gain in the future.
<br>
<br>
Will also look good when I apply to college and they see a timeline of my time in Computer Science.
</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>