-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
31 lines (29 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>But.. I Love You</title>
<link rel="icon" href="Pages/Assets/logo.png" type="image/x-icon">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="firstPage.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<img id="image" src="Pages/Assets/sad.gif" >
<button type="button" class="btn btn-danger" id="hover" onclick = "myFunction()" onmouseover="ChangeImage('hi'); bg();" onmouseout="ResetImage(); resetBG();">
<span>Hello 😔</span>
</button>
</div>
<div class="watermark">
Made by <a href="https://github.com/RS-labhub">RS </a>❣️
</div>
<script src="firstPage.js"></script>
</body>
</html>