-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 3.51 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
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>Bright-Side-Quotes</title>
<link rel="stylesheet" href="./style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="./script.js"></script>
</head>
<body>
<!-- header -->
<section class="py-2 header">
<div class="container">
<div class="row justify-content-between">
<div class="col-12 col-md-6">
<h3 class="fs-sm-1 display-3 fw-bold py-2 text-md-start text-center logo">Bright Side Quotes</h3>
</div>
<div class="col col-md d-flex align-items-center justify-content-sm-end justify-content-center">
<button class="mode text-dark px-3 py-2 m-1" id="throwButton" onclick="mailto:[email protected]">Report</button>
<button class="mode text-dark px-3 py-2 m-1"><i class="fa-brands fa-github"></i>Github</button>
</div>
</div>
</div>
</section>
<!-- main -->
<section class="py-5 main">
<div class="container py-5">
<div class="row py-5 px-2 justify-content-center">
<div class="col-12 py-5 px-2 d-flex justify-content-center box">
<p class="fs-2 display-md-3 quote text-light">Your Quotes will Be displayed here!</p>
</div>
<div class="col-12 py-2 d-flex justify-content-center">
<p class="fw-normal fs-6 m-0 text-center text-on">Click Here to Generate Your Quote!</p>
</div>
<div class="col-12 py-2 d-flex justify-content-center">
<button class="mode px-3 py-2 btn-hover color-8" onclick="displayRandomQuote()">Generate!</button>
</div>
</div>
</div>
</section>
<!-- footer -->
<section class="py-5 footer">
<div class="container">
<div class="row py-2 align-items-center justify-content-center">
<div class="col d-sm-flex d-block justify-content-center">
<li class="px-2 d-flex justify-content-center"><a href="#" class="links fs-5 fs-sm-3 fw-normal">Home</a></li>
<li class="px-2 d-flex justify-content-center"><a href="#" class="links fs-5 fs-sm-3 fw-normal">LinkedIn</a></li>
<li class="px-2 d-flex justify-content-center"><a href="#" class="links fs-5 fs-sm-3 fw-normal">Instagram</a></li>
<li class="px-2 d-flex justify-content-center"><a href="#" class="links fs-5 fs-sm-3 fw-normal">Github</a></li>
</div>
</div>
<div class="row">
<p class="fs-4 fw-normal py-3 text-center text-light">© Sweathkumar Projects 2024</p>
</div>
</div>
</section>
</body>
</html>