-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (31 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/jpg" href="images\Heart.png" sizes="16x16" type="image/icon" />
<link rel="stylesheet" href="styles.css">
<title>LSM Generator</title>
</head>
<body>
<div class="container">
<div class="mainText">
<h1 style="line-height: 1px;">LSM Generator</h1>
<p>I have a cat, a duck, and a doge.</p>
<button class="button" id="button" onclick="LSMRand()">
<b>Generate LSM</b>
</button>
<p class="copr">Made with ❤️ on love day by <a class="coprLink"
href="https://www.notion.so/carlkho/Carl-Achievements-Tracker-e296d985f1ee4bd2881e256d45bae39b"
target="blank">Carl
Kho</a> © Valentine's 2021</p>
</div>
<br />
<div class="LSM_Wrap">
<p id="LSMTxt">Click the button to generate a sweet message for your special someone ;)</p>
</div>
</div>
<script src="randLSM.js"></script>
</body>
</html>