-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (99 loc) · 4.53 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
91
92
93
94
95
96
97
98
99
100
101
102
<!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>Justin Young</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div class="set">
<nav class="navbar navbar-expand-lg bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled">Disabled</a>
</li>
</ul>
</div>
</div>
</nav>
<div>
<h1 class="display-1" style="padding-top: 50px;text-align: center;color: whitesmoke;font-weight: bolder;">
Hi I'm Justin Young...
</h1>
</div>
<div class="container">
<div class="row" style="padding-top:100px">
<h1 style="color: whitesmoke;">About Me</h1>
</div>
<div class="row">
<div class="col" style="color: whitesmoke;">
I'm an aspiring WebDevloper looking to break into the world of programming. I'm currently a full time state employee attending PDX CodeGuild in the evenings. I enjoy creating beatiful and
functional websites. I always look forward to challenging projects and love working as a team to accomplish goals.
</div>
<div class="col">
<img src="pencoffee.avif" class="img-fluid">
</img>
</div>
</div>
</div>
</div>
<div class="set2">
<div class="container" >
<div class="row" style="padding-top:100px">
<h1 class="col" style="color: whitesmoke;">SKILLS</h1>
<h1 class="col" style="color: whitesmoke;">WORK HISTORY</h1>
</div>
<div class="row">
<ul class="col" style="color: whitesmoke;">
<li>Leadership</li>
<li>Team Focused</li>
<!-- <li></li>
<li></li>
<li></li> -->
</ul>
<ul class="col" style="color: whitesmoke;">
<li>Farm Supply - Sales Customer Service; 2000 - 2002</li>
<li>US Army - 11B/Infantry; 2002 - 2007</li>
<li>Zachery Construction - Pipefitter; 2008 - 2009</li>
<li>VA Hospital - Lab Assistant; 2009 - 2010</li>
<li>Casino - Security Manager; 2010 - 2011</li>
<li>State Law Enforcement - Special Agent; 2011 - Present</li>
</ul>
</div>
</div>
</div>
<!-- <div class="set3">
<div>
</div>
</div> -->
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
</body>
</html>