-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgetstarted.html
47 lines (41 loc) · 1.61 KB
/
getstarted.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Repository Cards</title>
<link rel="icon" href="https://hacktoberfest.com/_next/static/media/favicon.25a5e6eb.svg" type="image/svg+xml">
<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=Space+Grotesk:[email protected]&display=swap" rel="stylesheet">
<!-- Bootstrap CSS for styling -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="./styles/getstarted.css" rel="stylesheet">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/section1.css">
</head>
<body>
<!-- Navbar -->
<div class="section" id="sec1">
<nav class="navbar">
<div class="navbar-main">
<img class="nav-logo" src="./img/gdg_logo.png" alt="GDG Logo">
<div class="nav-address">
<p class="add-first">Google Developer Groups</p>
<p class="add-sec">Pillai College of Engineering</p>
</div>
</div>
<div class="add-start">
<a href="./index.html"><button type="button"><span></span>Home</button></a>
</div>
</nav>
</div>
<div class="hero-container">
<h1>Repositories</h1>
<div class="row" id="repo-cards"></div>
</div>
<!-- External JavaScript -->
<script src="./scripts/getstarted.js"></script>
</body>
</html>