forked from IllinoisWCS/git-gud-spring-21
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (93 loc) · 4.02 KB
/
Copy pathindex.html
File metadata and controls
100 lines (93 loc) · 4.02 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
<!doctype html>
<html lang="en">
<head>
<title>WCS Explorations x HackIllinois Git Workshop</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<div class="container">
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1>Let's Git Gud at Git!</h1>
<h2>Get to know the members of your team while practicing your git skills.</h2>
<h3>// Git Gud @ Git, February 3, 2021</h3>
<hr/>
<h4>Instructions:</h4>
<p>// 1. Fill out this entire website! The wording can differ from person to person, but EVERYONE must merge a copy of the website for this activity to work.</p>
<p>// 2. Make a PR back to the "main" repo.</p>
<p>// 3. The owner of the "main" repo should share their screen and everyone should help them resolve the merge conflicts.</p>
</div>
</section>
<h1>About the Team</h1>
<!-- Write in your own words some commonalities and differences about your team -->
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">Similarities</h4>
<h5 class="card-subtitle">Find three non-physical similarities about your team!</h5>
<p class="card-text">1. We all go to U of I. </p>
<p class="card-text">2. We're all from different locations. </p>
<p class="card-text">3. We're all learning Git. </p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">Differences</h4>
<h5 class="card-subtitle">Find three non-physical differences about your team!</h5>
<p class="card-text">1. We have different levels of proficiency in git. </p>
<p class="card-text">2. Hussein has a virtual background, while the rest don't.</p>
<p class="card-text">3. Charlie and Sana are wearing glasses, and the rest aren't.</p>
</div>
</div>
</div>
</div>
<!-- Defend your stance! -->
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">Does pineapple belong on pizza?</h4>
<h5 class="card-subtitle">Debate your stances and record the final vote!</h5>
<p class="card-text">Number of votes for yes: 2</p>
<p class="card-text">Number of votes for no: 1</p>
<p class="card-text">Number of votes for other (i.e. I don't eat pizza, I am allergic to pineapple, etc.): </p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">Is a hotdog a sandwich?</h4>
<h5 class="card-subtitle">Debate your stances and record the final vote!</h5>
<p class="card-text">Number of votes for yes: 1 </p>
<p class="card-text">Number of votes for no: </p>
<p class="card-text">Number of votes for other (i.e. I don't eat hotdogs): 2</p>
</div>
</div>
</div>
</div>
<br/>
<h1>Team Members</h1>
<div class="row">
<!-- add your details to this section (whatever you are comfortable sharing)! -->
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<!-- start editing here -->
<!-- why do we encourage you to share your pronouns? https://tinyurl.com/pronouns-explanation -->
<h4 class="card-title">Sana (she/her/hers)</h4>
<h5 class="card-subtitle">Freshman // CS+Ling</h5>
<!-- stop editing here -->
</div>
</div>
</div>
</div>
</main>
</div>
</html>