-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathregistration.html
More file actions
112 lines (105 loc) · 5.05 KB
/
registration.html
File metadata and controls
112 lines (105 loc) · 5.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration</title>
<!--Logo on taskbar-->
<link rel="icon" type="image/png" href="./images/logo.png">
<link rel="stylesheet" href="registration.css">
<link rel="stylesheet" href="style.css">
<!-- Font links -->
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap" rel="stylesheet">
<!-- Bootstrap link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<section class="bg-img">
<header class="container-fluid p-1">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex align-items-center">
<a href="https://aces.dypvp.edu.in/"><img src="./images/logo.png" class="logo-img" alt="logo"></a>
<h1 class="logo text-light ms-3 text-center d-none d-lg-block">HackSeries</h1>
</div>
<nav class="navItems d-none d-lg-block ms-auto">
<a href="./index.html" class="text-light mx-3">Home</a>
<a href="./index.html#Event" class="text-light mx-3">Event</a>
</nav>
<!-- Mobile Toggle Button - Shown Only on Smaller Screens -->
<div class="d-flex justify-content-end">
<button class="navbar-toggler d-lg-none" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>
<!-- Mobile Navbar -->
<div class="collapse navbar-collapse d-lg-none" id="navbarNav">
<nav class="navbar-nav bg-dark p-3 shadow-lg">
<a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="./index.html">Home</a>
<a class="nav-item nav-link text-light px-4 py-2 mb-2 rounded transition-transform" href="./index.html#Event">Event</a>
</nav>
</div>
<div class="form-container" id="Contact">
<h2 class="title fw-bold display-4 mb-4 text-highlight-section5" style="font-size: 3.5rem;">Registration</h2>
<div class="d-flex justify-content-center flex-column flex-md-row align-items-center">
<div class="google-form-container">
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSevk-_awwme_dkLjFAnvk1aI2DA4ugM6YD1Ol1gQEiEPqvOdw/viewform?usp=sharing" -->
<a href="https://forms.gle/M8kWTeWDWrNTpVjX8"
target="_blank"
class="button-link">
<button class="cool-button">
<span>Fill Out Google Form</span>
<i class="fas fa-arrow-right"></i>
</button>
</a>
</div>
<div class="google-form-container">
<a href="./docs/Rules and regulations.pdf"
target="_blank"
class="button-link">
<button class="cool-button">
<span>Download Rules</span>
<i class="fas fa-arrow-right"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-content">
<div class="logo-text">
<img src="images/acesLogo(Black).svg" alt="ACES Logo" class="logo">
<div class="institution-text">
<h1>Association of Computer <br> Engineering Students</h1>
<p>Dr. D.Y. Patil Institute of Technology, <br>Pimpri</p>
</div>
</div>
<div class="social-links">
<h2>Socials</h2>
<ul>
<li><a href="https://www.instagram.com/aces.dit/">Instagram</a></li>
<li><a href="https://www.linkedin.com/company/acesdit/">LinkedIn</a></li>
<li><a href="https://github.com/acesdit">GitHub</a></li>
</ul>
</div>
<div class="other-links">
<h2>Other Links</h2>
<ul>
<li><a href="https://www.youtube.com/@ACESDIT">YouTube</a></li>
<li><a href="https://aces.dypvp.edu.in/blog">Blog</a></li>
<li><a href="https://linktr.ee/acesdit">Linktree</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2024 Association of Computer Engineering Students, DIT. All rights reserved.</p>
</div>
</footer>
</section>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>