-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (67 loc) · 3.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>emkosz | pbs</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css"
</head>
<body>
<!-- The Header Image Section -->
<header>
<div id="main-header">
<img></img>
<p>Hello, I'm Emma</p>
<p>Software developer</p>
</div>
<header>
<!-- The Navbar Section -->
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="#">About</a></li>
<li role="presentation"><a href="#">Portfolio</a></li>
<li role="presentation"><a href="#">Contact</a></li>
</ul>
<!-- The About Me Section -->
<div class="row">
<div class="about_me">
<div class="col-md-8">
<strong>About me</strong>
<p>
Your bones don't break, mine do. That's clear. Your cells react to bacteria and viruses differently than mine. You don't get sick, I do. That's also clear. But for some reason, you and I react the exact same way to water. We swallow it too fast, we choke. We get some in our lungs, we drown. However unreal it may seem, we are connected, you and I. We're on the same curve, just on opposite ends.
</p>
</div>
<div class="col-md-4">
<img src="http://www.fillmurray.com/g/150/200">
</div>
</div>
</div>
<!-- The Portfolio (projects) Section -->
<!-- <div class="col-md-8"><strong>Portfolio</strong></div> -->
<div class="row">
<div class="col-md-4">
<img src="http://www.fillmurray.com/g/120/120" class="proj-img"></img>
<p>Your bones don't break, mine do. That's clear. Your cells react to bacteria and viruses differently than mine. You don't get sick, I do.</p>
</div>
<div class="col-md-4">
<img src="http://www.fillmurray.com/g/120/120"></img>
<p>Your bones don't break, mine do. That's clear. Your cells react to bacteria and viruses differently than mine. You don't get sick, I do.</p>
</div>
<div class="col-md-4">
<img src="http://www.fillmurray.com/g/120/120"></img>
<p>Your bones don't break, mine do. That's clear. Your cells react to bacteria and viruses differently than mine. You don't get sick, I do.</p>
</div>
</div>
<!-- The Contact Section -->
<!-- containing a contact form -->
<!-- The Footer Section -->
<!-- Links to social media -->
<div>
<footer> © Emma Koszinowski 2015
<a href="https://www.linkedin.com/in/EmmaKoszinowski">LinkedIn<a>
</footer>
</div>
</body>
</html>