-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (41 loc) · 1.63 KB
/
index.html
File metadata and controls
58 lines (41 loc) · 1.63 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Startup</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<!-- My own stylesheet -->
<link rel="stylesheet" type="text/css" href="Style3.css">
</head>
<body>
<a href="Sublime Text.html">Next Page</a>
<style>
.btn {
animation: bounce;
animation-duration: 1.5s;
}
</style>
<div class="container d-flex align-items-center h-100">
<div class="row">
<header class="text-center">
<h1 class="animate__animated animate__fadeInDown"> The Biggest Startup event of this century!!!</h1>
</header>
<section class="text-center col-12">
<hr>
<a href="https://mailchi.mp/bdc220fc5d27/course"><button class="btn btn-danger">Find out more</button>
</a>
</section>
</div>
</div>
<p class="text-center">5% Progress</p>
<div class="progress" role="progressbar" aria-label="Basic example" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar" style="width: 5%"></div>
</body>
</html>