-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (62 loc) · 3.91 KB
/
index.html
File metadata and controls
71 lines (62 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=z, initial-scale=1.0">
<title>SD Bio</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Righteous&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-3">Selwyn Davenport</h1>
<p class="lead">This is where you learn all about me </p>
</div>
</header>
<nav class="navbar navbar-expand-lg navbar-light bg-light ">
<a class="navbar-brand" href="#">Contents</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">About <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-iten">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="row no-gutters bg-light position-relative">
<div class="col-md-3 mb-md-0 p-md-4">
<img src="Images/Portrait Photo.jpg" class="w-75" alt="...">
</div>
<div class="col-md-6 position-static p-4 pl-md-0">
<h5 class="mt-0">About Me</h5>
<p>Hi I'm Selwyn Davenport a former electrician and C programmer. I graduated in Electrical engineering at Humber college in 2018 and was given a Degree. At the time I worked for a small electrical company for around a year until they went out of buisness and I learned that I had an aspiration to learn coding. Afterwards I spent about 1.5 years just learning to code in C and C# before deciding to enroll in a conding bootcamp offered by the University of Toronto. At the time of writing, I currently work as a cook at Moxie's and I intend to do so until I have finished my studies and feel confident in my ability to code. Afterwords I will attempt to find work in a relevant indestry to once again get my foot in the door.</p>
<p>On a less professional note, I consider myself to be a 3D printer hobiest as I have built 2 and a PC enthusiast because I have also built 3 of them and asways keep my PC Hardware to the most highest teir possible. For reference my current PC specs are as follows:</p>
<ul>
<li>Core i9-9900k</li>
<li>32 gb of Ram</li>
<li>2x 2070 Supers in SLI (using NvLink) </li>
<li>A 1000w Power Supply</li>
<li>And all on a Custom Water loop</li>
</ul>
<p>As you can see I kind of like computers. But thats all form me, if you have any questions you can find a contact button at the top of the screen. Feel free to also check out the other work i have done in the Portfolio Section, I'll try to keep that updated for you.</p>
<p>Until then Thankyou for Visiting</p>
</div>
</div>
<footer class="card text-center">
<div class="card-footer text-muted">
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Mystery link</a>
</div>
</footer>
</body>
</html>