forked from bloominstituteoftechnology/Bootstrap-Project-I
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (106 loc) · 4.71 KB
/
index.html
File metadata and controls
117 lines (106 loc) · 4.71 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Digital Resume</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="containeri">
<div class="row justify-content-center"> <!-- Centering content -->
<div class="rowcontainer">
<ul class="nav">
<li class="nav-item"> <!-- Nav requirement -->
<a class="nav-link active" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Contact</a>
</li>
</ul>
</div>
</div>
<div class="row justify-content-center">
<div class="rowcontainer">
<div class="col-md-12">
<div class="jumbotron jumbotron-fluid"> <!-- Jumbotron requirement -->
<img class ="profileimg" src="img/profile-img.jpg" class="img-fluid" alt="Responsive image">
<h1 class="display-3">Robert Hogan</h1> <!-- Responsive Image Requirement -->
<p class="lead">Student developer, 3D artist</p>
<p>I have a simple love for creation, let me help you create something amazing.</p>
<a class="btn btn-primary btn-lg" href="#" role="button">Work with me</a>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-4 col-xs-8">
<h4>What I can do:</h4>
<ul class="list-group"> <!-- List Group requirement -->
<li class="list-group-item">Entry-level UI development</li>
<li class="list-group-item">Entry-level experience working with bootstrap frameworks</li>
<li class="list-group-item">Experience with HTML, CSS and JavaScrip Languages</li>
<li class="list-group-item">3D modeling focused around video game art</li>
<li class="list-group-item">Experience with photoshop</li>
<li class="list-group-item">Experience with PBR texture painting</li>
</ul>
</div>
<div class="col-sm-4 col-xs-8">
<h2>About me</h2>
<p>I have a bachelors degree in video game art from Full Sail University. For my time there, I focused on 3d modeling structured around video game constraints. I also recieved schooling in 3d animation, 3d texturing, lighting, and level design. I currently am branching out into the web/ software development field by attending Lambda School for computer science to pursue a career in software engineering.I have a love for technology, gaming, music, anything cullinary, and movies.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="rowcontainer">
<h2>Work History</h2>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Years</th>
<th scope="col">Company</th>
<th scope="col">Location</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">4</th>
<td>Bobs Discount Homestore</td>
<td>Massachusetts</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Best Buy</td>
<td>Massachusetts</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Allied Universal Security Services</td>
<td>Massachusetts</td>
</tr>
</tr>
</div>
</tbody>
</table>
<div class="row justify-content-center">
<div class="footerrow">
<h3>Thanks for stopping by!</h3>
</div>
</div>
<div class="row justify-content-center">
<button type="button" class="btn btn-link">Check My LinkedIn!</button> <!-- Button requirement -->
</div><!-- container -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>