-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 4.29 KB
/
index.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
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>DVCoders Website</title>
</head>
<body>
<div class="background">
<!-- Landing Page -->
<div class="App-header">
<img src="assets/dvcoders-icon.jpg" class="logo" alt="DVCoders logo"></img>
<h1 class="landing-title">DVCoders</h1>
</div>
<!-- About -->
<div class="container">
<h2 class="subheading">About Us</h2>
<h4 class="about-description">Hello! We're a group that at DVC that shares and teaches skills that you can't learn in the classroom. This semester's topic is Web Development!</h4>
</div>
<!-- Contact -->
<!-- Members -->
<div class="container">
<h2 class="subheading">Our Members</h2>
<div class="row">
<div class="col-sm">
<div class="card" style="width: 18rem;">
<img src="assets/jonathan-southern.png" class="card-img-top avatar" alt="jonathan-southern">
<div class="card-body">
<h5 class="card-title">Jonathan Southern</h5>
<h6 class="card-subtitle mb-2 text-muted">Club President</h6>
<p class="card-text">I've been at DVC for 3 years, and I've finished all CS classes. I'm also a web developer at Acutulus</p>
<a href="https://www.linkedin.com/in/jonathan-southern-772b4b135/" class="card-link">LinkedIn</a>
<a href="https://github.com/JonathanSouthern" class="card-link">Github</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="card" style="width: 18rem;">
<img src="assets/benedict-taguinod.png" class="card-img-top avatar" alt="jonathan-southern">
<div class="card-body">
<h5 class="card-title">Benedict Taguinod</h5>
<h6 class="card-subtitle mb-2 text-muted">Club Member</h6>
<p class="card-text">I am a student pursuing Computer Science in hopes to become a skilled software engineer</p>
<a href="https://github.com/btaguinod" class="card-link">Github</a>
</div>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="assets/Mike_Heston.png" class="card-img-top avatar" alt="jonathan-southern">
<div class="card-body">
<h5 class="card-title">Mike Heston</h5>
<h6 class="card-subtitle mb-2 text-muted">Club Member</h6>
<p class="card-text">I've been at DVC for 3 years, and I've finished all but one CS class. I have been coding in almost every language for over 12 years.</p>
<a></a>
<a href="https://github.com/mdogdope" class="card-link">Github</a>
</div>
</div>
<div class="col-sm">
<div class="card" style="width: 18rem;">
<img src="assets/avataaars.png" class="card-img-top avatar" alt="jonathan-southern">
<div class="card-body">
<h5 class="card-title"> Ming Cheng</h5>
<h6 class="card-subtitle mb-2 text-muted">Club CTO</h6>
<p class="card-text">2rd year @DVC, interested in competitive programming. And this line is to make columns have the same height.</p>
<a href="https://www.linkedin.com/in/ming-cheng-882788179/" class="clard-link">LinkedIn</a>
<a href="https://github.com/c404err" class="card-link">Github</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>