-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (74 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<!-- css style sheet -->
<link rel="stylesheet" href="styles/index.css">
<!-- fonts link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet">
<!-- logo link with boxicons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="shortcut icon" href="backgrounds/logo1.png" type="image/x-icon">
</head>
<body>
<div class="animated-bg" onmousemove="createBubble(event)"> </div>
<div class="animated-bg-inner">
<div class="main-page">
<!-- navbar start -->
<nav class="navbar">
<div class="logo"><a href="#">GUMP</a></div>
<button class="login-btn">
<a href="login.php"> Log in<i class='bx bx-user' id="login-btn"></i></a>
</button>
</nav>
<!-- navbar end -->
</div>
<div class="info">
<h1>Hello User!</h1>
<h3>Get Ready to Study With Gump.</h3>
<div class="info-boxes">
<div class="box-one">
<p>Study anytime, anywhere</p>
</div>
<div class="box-two">
<p>Moniter Learning Time With Time Tracker</p>
</div>
<div class="more-button"><a href="about.html"><i class="bx bx-chevron-right"></i></a></div>
</div>
<div class="quote-container">
<p id="quote">This is the initial quote.</p>
</div>
<script src="/Javascript/quote.js"></script>
</div>
<div class="menubox">
<ul>
<a href="index.html">HOME</a><br><br><br>
<a href="Room.html">ROOMS</a><br><br><br>
<a href="study_techniques.html">STUDY TECHNIQUES</a><br><br><br>
<a href="streams.html">STREAMS</a><br><br><br>
<a href="about.html">ABOUT US</a>
</ul>
</div>
<script>
function createBubble(event) {
const bubble = document.createElement('div');
bubble.classList.add('bubble');
bubble.style.left = event.clientX + 'px';
bubble.style.top = event.clientY + 'px';
document.querySelector('.animated-bg').appendChild(bubble);
// Remove bubble after animation
bubble.addEventListener('animationend', () => {
bubble.remove();
});
}
</script>
</body>
</html>
<html>
</html>