-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.79 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
<!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.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm bg-light">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
</header>
<div class="row">
<div class="col-sm-4">
<div class="card">
<div class="card-header">Blogging?</div>
<div class="card-body">Well, I don't really do any blogging. I think the point of this part isn't so
much to focus on the blogging that I don't do but to see if I am about to set up the body of a
paragraph on a page.
Hopefully I am right, because if my grade is based on how much blogging I do and, therefore; have
material to talk about, I'm screwed.</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-header">Developing</div>
<div class="card-body">I am currently going through the daytime c# full stack boot camp at Grand Circus.
I plan on learning python directly after finishing boot camp.</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-header">Hometown</div>
<div class="card-body">I grew up in Plymouth Michigan, which is a suburb of Detroit. It was your typical
white picket fence yuppy suburban town. It is home to the largest high school system in Michigan
PCEP, which consisted of 3 full sized high schools on one campus. As as student I would have classes
at all 3, it was set up very much like a college campus.</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous">
</script>
</body>
</html>