-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 2.34 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>JokeBox</title>
<link rel="icon" href="src/logo.png" type="image/icon type">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script src="src/script.js" defer></script>
<link href="src/style.css" rel="stylesheet">
<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=Sora:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div class="gradient-bg p-sm-5">
<div class="main-box h-100 w-100 m-auto p-4 p-md-5 row d-flex align-items-center">
<!-- Left view -->
<div class="fw-bold col-md-7 title-text text-stroke ">
<a href="index.html">
<img class="logo-icon pb-5" src="src/logo.png">
</a>
<p class="animate__animated animate__fadeInUp">The ultimate </p>
<p class="normal-title animate__animated animate__fadeInUp ">JokeBox </p>
<p class="animate__animated animate__fadeInUp">for CS.</p>
<div class="animate__animated animate__fadeIn animate__delay-2s">
<hr class="hr1 mt-5">
</div>
</div>
<!-- Right view -->
<div class="col-md-5 animate__animated animate__bounceIn animate__delay-3s">
<p>Click on me to generate!</p>
<button class="generate-btn px-5 py-2" onclick="getJoke()">( ͡° ͜ʖ ͡°)</button>
<div id="joke-box" class="py-3 "></div>
</div>
</div>
</div>
<div id="circular-cursor"></div>
</body>
</html>