forked from Axosoft/learn-git-with-gitkraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (52 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Wonder Kraken</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>Our Team</h1>
<div class="row">
<div class="left">
<p> We're so glad you're visiting our page! Read below to learn more about us and what we do. </p>
<ul>
<li>We were founded in 2019.</li>
<li>We build exciting things.</li>
<li>Let's build together!</li>
</ul>
</div>
<div class="right">
<img src="team.png">
</div>
</div>
</section>
<main>
<h1>Who We Are</h1>
<h2>Bio: I am John, John am I</h2>
<!-- copy from here -->
<div class="about">
<div class="bio-left">
<img src="rosie-the-kraken.png"/>
</div>
<div class="bio-right">
<h2>Rosie the Kraken</h2>
<p> I'm Rosie the Kraken! In the 1940s, I encouraged women to join the World War II effort in the United States. Since then, I have become a symbol of women participating in all sorts of industries where they are underrepresented. We can do it! </p>
</div>
</div>
<!-- to here -->
<!-- paste what you copied directly below here -->
</main>
<footer>
<span>Find us at gitkraken.com.</span>
</footer>
</body>
</html>