forked from efielding/mfw-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Practice</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Practice</h1>
<h3>Minimum Requirements:</h3>
<ul>
<li>Create a New Branch</li>
<li>Add your name</li>
<li>Tell me about yourself</li>
<li>Save and push to your branch</li>
<li>BONUS: Style the page however you'd like</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-3">
<h1>Mark King</h1>
</div>
<div class="col-md-9">
<h3>This is my 4th career, or actualy a reboot of the second. I was born in Fresno. I went to Easterby Elementary School, Kings Canyon Jr Highschool, Roosevelt High School and Fresno State University. I have had worked in technology including networking, internal website programming, and computer forensics. I also owned a landscape business and have spent the last ten years as an archaeologist. </h3>
</div>
</div>
</div>
<!-- start of javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>