forked from MLH/localhost-gitkraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (51 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Team Page</title>
<link href="reset.css" type="text/css" rel="stylesheet">
<link rel="icon" type="image/png" href="favicons.png" >
<link href="https://fonts.googleapis.com/css?family=Montserrat|Poppins|Ubuntu|Lato" rel="stylesheet">
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<span>Home</span>
<span>About</span>
</header>
<section>
<h1>Team Name</h1>
<div class="row">
<div class="left">
<p>Achieving something awesome. At scale. Better than you could do it for yourself. For money.</p>
<ul>
<li>First point</li>
<li>Second point</li>
<li>Third point</li>
</div>
<div class="right">
<img src="logo.png">
</div>
</div>
</section>
<main>
<div class="container">
<h1>Who We Are</h1>
<!-- copy from here -->
<div class="about">
<div class="bio-left">
<img src="https://cdn.glitch.com/00c06d6f-7133-4af5-a6b1-8d1b754d7919%2Fthumbnails%2F2018-localhost-ada-profile-1.jpg?1527624363594" />
</div>
<div class="bio-right">
<h2>MLH Localhost</h2>
<p> MLH Localhost is a series of QAed, out-of-the-box workshops that anyone can use to learn and teach new skills </p>
</div>
</div>
<!-- to here -->
</div>
</main>
<footer>
<span>Email us at:</span>
</footer>
</body>
</html>