-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
executable file
·60 lines (57 loc) · 2.28 KB
/
landing.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">
<head>
<meta charset="UTF-8">
<title>Skillcrush Starter</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- LANDING PAGE -->
<section class="landing-page landing-bg">
<div class="container">
<div class="author-intro">
<div class="content">
<h1 class="title">
Hi, I’m Emily.<br>
I love building websites.
</h1>
<p>I’m the lead developer at <a href="http://skillcrush.com/">Skillcrush</a> as well as an instructor in Ruby and JavaScript. I got my start as an administrative assistant in the IT department at the Broad Institute of Harvard and MIT and worked my way up to software engineer!</p>
<p>When I’m not at Skillcrush (which is most of the time), I can usually be found on my bike, practicing French, enjoying a cocktail at my favorite neighborhood bar or playing Zelda.</p>
</div>
<div class="social-btns">
<a href="" class="soc-icon tw"></a>
<a href="" class="soc-icon fb"></a>
<a href="" class="soc-icon ln"></a>
<a href="" class="soc-icon db"></a>
</div>
<a href="" class="btn">View My Blog </a>
</div>
</div>
</section>
<!-- END landng page -->
<!-- ALT LANDING PAGE -->
<!-- <section class="landing-page">
<div class="container">
<img src="upload/Emily.png" alt="" class="author-img">
<div class="author-intro">
<div class="content">
<h1 class="title">
Hi, I’m Emily.<br>
I love building websites.
</h1>
<p>I’m the lead developer at <a href="http://skillcrush.com/">Skillcrush</a> as well as an instructor in Ruby and JavaScript. I got my start as an administrative assistant in the IT department at the Broad Institute of Harvard and MIT and worked my way up to software engineer!</p>
<p>When I’m not at Skillcrush (which is most of the time), I can usually be found on my bike, practicing French, enjoying a cocktail at my favorite neighborhood bar or playing Zelda.</p>
</div>
<div class="social-btns">
<a href="" class="soc-icon tw"></a>
<a href="" class="soc-icon fb"></a>
<a href="" class="soc-icon ln"></a>
<a href="" class="soc-icon db"></a>
</div>
<a href="" class="btn">View My Blog </a>
</div>
</div>
</section> -->
<!-- END alt landng page -->
</body>
</html>