-
Notifications
You must be signed in to change notification settings - Fork 1
/
car-test.html
75 lines (68 loc) · 2.29 KB
/
car-test.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
html {
height: 100%;
width: 100%;
}
body {
height: 1000vh;
width: 100%;
background-color: rebeccapurple;
}
.evt-container {
width: 100%;
height: 100vh;
border: 1px solid red;
}
</style>
<!-- CSS -->
<link rel="stylesheet" href="bootstrap-5.3.2-dist/css/bootstrap.css" />
<link rel="stylesheet" href="bootstrap-icons-1.11.3/font/bootstrap-icons.min.css">
<!-- <link rel="stylesheet" href="style-new.css"> -->
<!-- JS -->
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.js"></script>
<script src="bootstrap-5.3.2-dist/js/bootstrap.bundle.min.js"></script>
<script src="app-new.g.js" defer></script>
<script src="app-new.g.js" defer></script>
</head>
<body>
<main>
<section id="hero" class="w-100 vh-100 d-flex justify-content-center align-items-center">
<div class="w-50 h-50 d-flex flex-column justify-content-center align-items-center">
<div>
<img src="assets/images/logo/logo.png" alt="GDSC NUV Logo">
</div>
<div class="fs-1 fw-medium lh-1 text-body-secondary">
Developer Student Club
</div>
<div class="fs-3 fw-medium text-body-secondary">
Navarachna University
</div>
<div>
<a href="#events" class="btn btn-primary btn-lg">Events</a>
<button type="button" class="btn btn-lg focus-ring">Contact Us</button>
</div>
</div>
</section>
<section id="events" class="w-100 vh-100 evt-parent">
<div class="evt-section">
<div class="evt-main">
Upcoming Events / Competitions
</div>
<div class="evts">
</div>
</div>
</section>
</main>
</body>
</html>