-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (98 loc) · 3.26 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
<!--
Authors: Andy Liang, Marvin Wu
Implementation Dates: May 1st-May 2nd 2021
Modified Date: May 7 - 8, 2021
Purpose: To provide helpful study tips and tools, as well as a burst of motivation to students who may want it!
-->
<!DOCTYPE html>
<html>
<head>
<title>STUDYWEB</title>
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header>
<div class="logo-container">
<h1 class="big-website-name">STUDYWEB</h1>
</div>
<nav>
<ul class="nav-links">
<li><a class="nav-link" href="index.html"> Home </a></li>
<li><a class="nav-link" href="#">About</a></li>
<li><a class="nav-link" href="#">Resources</a></li>
</ul>
</nav>
</header>
<!-- MAIN -->
<main>
<div class="container1">
<div class="card1" onclick="document.location='tipsPage.html'">
<div class="card__inner1">
<div class="card__face card__face--front1">
<h2>Tips for Better Studying</h2>
<p class="section-desc">
Are you trying to improve your grades, but your methods just
aren't working? Try checking out these tips!
</p>
</div>
</div>
</div>
</div>
<div class="container2">
<div class="card2" onclick="document.location = 'timerPage.html'">
<div class="card__inner2">
<div class="card__face card__face--front2">
<h2>Study Timer</h2>
<p class="section-desc">
Use this timer to help manage your studying sessions!
</p>
</div>
</div>
</div>
</div>
<!-- ======================================================================= -->
<!-- Card 3 -->
<!-- ======================================================================= -->
<div class="container3">
<div class="card3">
<div class="card__inner3">
<div
class="card__face card__face--front3"
id="card__face card__face--front3-id"
>
<h2>Motivational Quotes</h2>
<p class="section-desc" id="section-desc-3-id">
Feeling a little unmotivated to study? Click the button!
</p>
<button class="button generate" onclick="generateQuote()">
Generate
</button>
</div>
</div>
</div>
</div>
</main>
<!-- ======================================================================= -->
<!-- Footer -->
<!-- ======================================================================= -->
<footer class="bottom-bar">
<div class="social-menu">
<ul>
<li>
<a href="#"><img class="social-icon" src="img/tam_fb.png" /></a>
</li>
<li id="twit">
<a href="#"><img class="social-icon" src="img/tam_twit.png" /></a>
</li>
<li>
<a href="#"><img class="social-icon" src="img/tam_insta.png" /></a>
</li>
</ul>
</div>
</footer>
<script src="main.js"></script>
</body>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script> -->
</html>