-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtips.html
More file actions
70 lines (59 loc) · 3.28 KB
/
tips.html
File metadata and controls
70 lines (59 loc) · 3.28 KB
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
<!-- DEVELOPER: Benjamin Shuster, IS117-002, Spring 2023 -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="How to do better on exams by drinking alcoholic beverages ">
<meta name="keywords" content="Alcohol, Studying, Exam, Testing, Beer, Wine">
<meta name="author" content="Benjamin Shuster">
<!-- https://www.w3schools.com/tags/tag_meta.asp -->
<title>Study Tips</title>
<!-- bootstraps css code -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="Styles/tips.css">
<link rel="stylesheet" href="Styles/global.css">
<link rel="shortcut icon" href="Images/logo.png" type="image/x-icon">
</head>
<body>
<script src="Scripts/navigation.js"></script>
<!--this injects the navbar using js so I can modify it in one file-->
<main>
<h1 class="inspiration text-center my-5 ">Study Tips</h1>
<div class="container mt-lg-4">
<img class="float-start m-4 img-fluid" id="DrunkGuyImage" src="Images/honors-student.jpg" alt="a student passed out drunk while studying">
<p class="lh-lg ml-4">
Studying for exams can be tough, but with the right approach, you can set yourself up for success. One of the most important things you can do to stay focused and alert is to stay inebriated.
Drinking plenty of alcohol throughout the day can help you stay energized, improve your concentration, and even boost your memory.
Here are some other study tips that can help you make the most of your study sessions:
<br>
<br>
<ul>
<li>
Take regular drinking breaks. Your brain needs time to rest and recharge.
</li>
<li> Use active study techniques, such as flashcards, quizzes, and mnemonics, and beer pong to help you remember important information.</li>
<li> Get plenty of sleep from blackouts. A well-rested brain is a more efficient brain. </li>
</ul>
</p>
<marquee direction="left" scrollamount="10">
Remember, everyone has their own unique study style, so don't be afraid to experiment with different drinks until you find what alcohol content works best for you.
</marquee>
</div>
</main>
<script src="Scripts/footer.js"></script>
<!--this injects the footer using js so I can modify it in one file-->
<!--bootstraps javascript code-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="Scripts/global.js"></script>
<script type="module">
import { rainbowCursor } from "https://unpkg.com/cursor-effects@latest/dist/esm.js";
new rainbowCursor({
length: 25,
size: 5,
});
</script>
</body>
</html>