-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (88 loc) · 4.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello!</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="src/css/jquery_page.css">
<script src = "src/js/jquery/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/jquery.color-animation/1/mainfile"></script>
<script src = "src/js/jquery_script.js"></script>
</head>
<body>
<div class="welcome-container">
<div class="welcome-header">
<h1 class="welcome"> welcome. </h1>
</div>
<div class="welcome-header" style="left:43vw; top:0vw;">
<p class="welcome" style= "font-size:1.5vw;"> hover over a button and look around </p>
</div>
</div>
<!--
<div class="side-container">
<img class="side-img" src="src/img/mainPage/rainbow-vertical.png">
</div>
<div class="side-container" style="float:right; left:87%">
<img class="side-img" src="src/img/mainPage/rainbow-vertical.png">
</div>
-->
<div id="aboutText" class="detail-container" style="left: 3vw; top: 20vw; background-color: red;">
<div class="detail-text">
<h2 style="font-family:BEBAS;"> About </h2>
<p class = "descript-text"> Find out more about the site and me! <br/> Includes bio and profiles </p>
</div>
</div>
<div id="gameText" class="detail-container" style="left: 3vw; top: 3vw; background-color: yellow;">
<div class="detail-text">
<h2 style="font-family:BEBAS;"> Games </h2>
<p class = "descript-text"> Have some fun! <br/> Includes phaser.io browser games</p>
</div>
</div>
<div id="learnText" class="detail-container" style="left: 70vw; top: 3vw; background-color: green;">
<div class="detail-text">
<h2 style="font-family:BEBAS;"> Experience </h2>
<p class = "descript-text"> Check out some positions I've held in the past! <br/> Includes jobs and organizational roles </p>
</div>
</div>
<div id="exploreText" class="detail-container" style="left: 3vw; top: 33vw; background-color: dodgerblue;">
<div class="detail-text">
<h2 style="font-family:BEBAS;"> Music </h2>
<p class = "descript-text"> Check out some great music! <br/> Includes my favorite albums and ratings </p>
</div>
</div>
<div id="projectsText" class="detail-container" style="left: 72vw; top: 21vw; background-color: purple;">
<div class="detail-text">
<h2 style="font-family:BEBAS;"> Projects </h2>
<p class = "descript-text"> Take a look at other things I've done! <br/> Includes descriptions and source code </p>
</div>
</div>
<div id="newsText" class="detail-container" style="left: 72vw; top: 33vw; background-color: darkorange;">
<div class="detail-text">
<h2 style="font-family:BEBAS;"> News </h2>
<p class = "descript-text"> Read some articles I find interesting! <br/> Includes links to external sites </p>
</div>
</div>
<div class="circle" id="circle"> </div>
<div class="main-selector-buttons" style="top: 14vw; left: 42.5vw;">
<a class="main-button" data-text="exploreText" style="background-color: #2196f3" href="explore.html">Music</a>
</div>
<div class="main-selector-buttons" style="top: 21vw; left: 30vw;">
<a id="representative" class="main-button" data-text="aboutText" style="background-color: #f44336" href="about.html">About</a>
</div>
<div class="main-selector-buttons" style="top: 21vw; left: 55vw;">
<a class="main-button" data-text="learnText" style="background-color: #4caf50; font-size:.8vw;" href="experience.html">Experience</a>
</div>
<div class="main-selector-buttons" style="top: 34vw; left: 30vw;">
<a class="main-button" data-text="gameText" style="background-color: #ffeb3b;" href="games.html">Games</a>
</div>
<div class="main-selector-buttons" style="top: 25vw; left: 40.5vw;">
<img class="icon" title="thanks @diana" src="src/img/mainPage/me.GIF">
</div>
<div class="main-selector-buttons" style="top: 34vw; left: 55vw;">
<a class="main-button" data-text="projectsText" style="background-color: #9c27b0" href="projects.html">Projects</a>
</div>
<div class="main-selector-buttons" style="top: 41vw; left: 42.5vw;">
<a class="main-button" data-text="newsText" style="background-color: #ffa500" href="news.html">News</a>
</div>
</body>
</html>