-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandrewt.html
57 lines (56 loc) · 2.06 KB
/
andrewt.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
<!DOCTYPE html>
<html>
<head>
<title>Andrew's Page</title>
<link rel="stylesheet" href="andrewt.css"/>
</head>
<body>
<script>
function activateAbout() {
if (document.getElementById("aboutMeInfo").style.display == 'none') {
document.getElementById("aboutMeInfo").style.display = 'block';
}
else {
document.getElementById("aboutMeInfo").style.display = 'none';
}
}
function activateFav() {
if (document.getElementById("favThingsInfo").style.display == 'none') {
document.getElementById("favThingsInfo").style.display = 'block';
}
else {
document.getElementById("favThingsInfo").style.display = 'none';
}
}
</script>
<header>
<h1>Welcome!</h1>
</header>
<nav class="backs">
<ol>
<li class="back"><a href="https://rdziewietin.github.io/group7-website/">Main Page</a></li>
<li class="back">Andrew</li>
</ol>
</nav>
<main>
<h2>My name is Andrew Tran and here is my page!</h2>
<div>
<button onclick="activateAbout()">About Me</button>
<div id="aboutMeInfo">
<p>
School: 2nd Semester Sophomore at UMass Amherst </br>
Major: Biology => Informatics </br>
Age: 20 </br>
From: Quincy, MA
</p>
</div>
<button onclick="activateFav()">Favorite Things</button>
<div id="favThingsInfo">
<img src="https://www.monsterhunter.com/rise/assets/images/common/share.png" alt="Monster Hunter Rise">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi.pinimg.com%2Foriginals%2F48%2Fcb%2F53%2F48cb5349f515f6e59edc2a4de294f439.png&f=1&nofb=1&ipt=aaa52e1f8d0c7a1928f918a0ecab44294f380e28004b5ab4afba30000a350666&ipo=images" alt="Dungeons & Dragons">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fstatic.independent.co.uk%2Fs3fs-public%2Fthumbnails%2Fimage%2F2019%2F01%2F31%2F14%2Fpanda-bamboo.jpg&f=1&nofb=1&ipt=659da699fe32c0515b37835b897ce247a848add8899010df6dd9f7c2fee20046&ipo=images" alt="cute panda">
</div>
</div>
</main>
<body>
</html>