-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
56 lines (43 loc) · 1.96 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
<!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='shortcut icon' type='image/x-icon' href="./icons/favicon.ico" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<title>Xcuse Me, Please!</title>
</head>
<body>
<section class="xcuse-main">
<div class="xcuse-heading">
<h1>Looking for excuses to procrastinate?</h1>
<p>We got you covered!</p>
</div>
<div class="xcuse-main-box" >
<div class="xcuse-main-box-centered">
<h2 class="mb-0" id="xcuseMessage">Hello World</h2>
</div>
<div class="xcuse-main-box-button">
<button class="btn btn-lg " onclick="getRandomXcuse()">Give me Xcuse </button>
</div>
</div>
</section>
<footer>
<div class="container text-align-center">
<a href="https://twitter.com/aquibj0" class="footer-icon">
<img src="https://www.freepnglogos.com/uploads/twitter-logo-png/twitter-logo-vector-png-clipart-1.png" width="20" alt="">
</a>
<!-- <a href="" class="footer-icon">
<img src="https://www.freepnglogos.com/uploads/twitter-logo-png/twitter-logo-vector-png-clipart-1.png" width="20" alt="">
</a> -->
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>