forked from skillcrush/105-coding_resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
84 lines (71 loc) · 3.06 KB
/
about.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
83
84
<!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">
<title>My Code Compendium | About Me</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div class="top-header">
<div class="full-width">
<h1><a href="index.html">Ethel's Code Compendium</a></h1>
<nav>
<ul>
<li><a href="index.html#resources">Resources</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<section id="about">
<div class="full-width">
<figure class="bio-image">
<img src="img/bio-image.jpg" alt="Woman smiling" />
</figure>
<div class="bio">
<h3>Let’s code together!</h3>
<p>
Lorem ipsum dolor amet chia keytar tumeric cred af tattooed. Drinking vinegar tbh echo park four
loko, literally green juice skateboard whatever vaporware. Flannel selvage trust fund, craft
beer wayfarers hexagon palo santo kickstarter bespoke 8-bit.
</p>
<p>
Shabby chic migas iPhone meh kale chips fingerstache humblebrag umami, marfa vegan. Succulents
chambray lo-fi hot chicken mixtape chillwave narwhal etsy DIY everyday carry
gluten-free lomo vegan lyft. Food truck raw denim cornhole schlitz fam jean shorts.
</p>
</div>
</div>
</section>
</main>
<footer id="contact">
<h4>Let's code and coffee</h4>
<ul class="social-icons">
<li>
<a href="https://www.facebook.com/" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" rel="noopener"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
</li>
</ul>
<!--footer content-wrapper ends-->
<div class="copyright">
<p>Copyright 2019</p>
<p class="credit">Photos by Artem Sapegin and Michael Dam on Unsplash</p>
</div>
</footer>
</body>
</html>