-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (92 loc) · 3.54 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
<!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> Josh Sieler's Portfolio </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/style.css"/>
</head>
<body>
<header>
<nav class="container-fluid navbar navbar-expand-lg navbar-dark primary-color">
<h1 class="pr-5 header-title">Joshua Sieler</h1>
<!-- Collapse button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#basicExampleNav"
aria-controls="basicExampleNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="basicExampleNav">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#about">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#work">Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#resumel">Resume</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Hero Section -->
<!-- Hero Background Image -->
<section class="hero">
</section>
<!-- About Me Section -->
<article class="container">
<div id="about" class="bio-container">
<div class="bio">
<img src="./assets/images/Bio-Image.jpg" width="250" height="300" alt="Joshua Sieler">
<div class="bio">
<h2>About Me</h2>
<p> Hello my names Josh Sieler, im 29 years old. <br>
This is my work in progess Portfolio, as I progress <br>
through this course and gain more knowledge, this <br>
page will grow as I do in the world of coding! </p>
</div>
</div>
</div>
</article>
<!-- Work Projects -->
<section class="project-container">
<div id="work" class="main-project">
<h2>Work</h2>
<a href="https://jsieler.github.io/Cinamac/" id="cinamac"></a>
<div class="project-title">CINAMAC</div>
</div>
<div class="side-project">
<a href="https://jsieler.github.io/run-buddy/" id="run-buddy"></a>
<div class="project-title">RUN-BUDDY</div>
</div>
<div class="side-project">
<a href="https://jsieler.github.io/Refractoring-Code-Challenge-Jsieler/" id="horiseon"></a>
<div class="project-title">HORISEON</div>
</div>
<div class="side-project">
<a href="https://github.com/Jsieler/wizard-sorting-quiz" id="hogwarts-library"></a>
<div class="project-title">HOGWARTS-LIBRARY</div>
</div>
</section>
<!--Footer Contact Me -->
<footer>
<h2>Contact Me</h2>
<div id="contact">
<a href="contact"></a>
<a href="tel:801-9166917">801-916-6917</a>
<a href="contact"></a>
<a href="mailto:Sielerjosh@gmail.com">Sielerjosh@gmail.com</a>
<a href="contact"></a>
<a href="https://github.com/Jsieler/">GitHub</a>
<a href="contact"></a>
<a href="https://www.linkedin.com/in/joshua-sieler-562445209/">Linkedin</a>
</div>
</footer>
</body>
</html>