-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.6 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Git Workflow Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="keywords" content="">
<meta name="description" content="">
<meta property="og:title" content="Git Workflow Demo">
<meta property="og:type" content="website">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" media="screen">
</head>
<body class="main">
<div class="headline-container pb-4 d-flex flex-column justify-content-center">
<img class="headline-img m-auto" src="/images/Cyberus-stud-white-logo-no-bg.png" alt="Cyberus Stud Logo">
<span class="headline-txt text-center fs-1 fw-bolder">
Meet Our Team
</span>
</div>
<div class="members-container container my-4 d-flex flex-wrap justify-content-between">
<div id="member-card-MEMBER_INDEX" class="member-card-container w-25 mx-auto p-3 d-flex flex-column justify-content-end position-relative">
<div class="member-img-container position-absolute start-50 translate-middle">
<img class="member-img w-100 h-100" src="" alt="">
</div>
<span class="member-name text-center text-uppercase fs-5 fw-bolder text-break">
MEMBER_NAME
</span>
<span class="member-role text-center fs-6 fw-bold text-break mw-100">
MEMBER_ROLE
</span>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>