-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.html
More file actions
61 lines (57 loc) · 1.42 KB
/
test.html
File metadata and controls
61 lines (57 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./CSS/style.css ">
<link rel="stylesheet" href="./CSS/test.css">
</head>
<body>
<p id="Events"></p>
<h1>Upcoming Events</h1>
<hr></hr>
<br><br><br>
<div class="wrapper1">
<div class = 'yeet'>
<div class="view view-first">
<img src="./CSS//Images/HOR.jpeg" />
<div class="mask">
<h2>HOR</h2>
<p>HOR is back </p>
<button class="info">Read More</button>
</div>
</div>
</div>
<div class = 'yeet'>
<div class="view view-first">
<img src="./CSS//Images/MD.png" />
<div class="mask">
<h2>Machine Design</h2>
<p>Machine Design is back </p>
<button class="info">Read More</button>
</div>
</div>
</div>
<div class = 'yeet'>
<div class="view view-first">
<img src="./CSS//Images/Logo_Equinox_white_bg (1).png" />
<div class="mask">
<h2>Equinox</h2>
<p>Equinox is back </p>
<button class="info">Read More</button>
</div>
</div>
</div>
<div>
</div>
<div class = 'pop'>
<h1>Stuff</h1>
</div>
<script>
document.querySelector('button').onclick = ()=>{
document.querySelector('.pop').classList.toggle('focus');
console.log('sd')}
</script>
</body>
</html>