-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex_replacement.html
More file actions
87 lines (73 loc) · 3.33 KB
/
index_replacement.html
File metadata and controls
87 lines (73 loc) · 3.33 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
<!--<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<link href='css/style.css' rel='stylesheet'>
</head>
<body>
<div class="menu">
<ul>
<li><a class="indexmenu" href='index.html'>Home</a></li>
<li><a class="indexmenu" href='html/til.html'>T.I.L.</a></li>
<li><a class="indexmenu" href='html/redditKarma.html'>redditKarma</a></li>
<li><a class="indexmenu" href='css/style.css'>Style Sheet</a></li>
<li><a class="indexmenu" href='html/marbles/parts/1.html'>Marbles</a></li>
<li><a class="indexmenu" href='html/gameloop.html'>Game Loop</a></li>
<li><a class="indexmenu" href='html/breakout.html'>Breakout</a></li>
</div>
<div class="jumbotron">
<div class="icon-menu">
Menu
</div>
<div class="heading">David M. Browning
</br>
<a class ="email" href="mailto:dmbrowning21@gmail.com">dmbrowning21@gmail.com</a>
</div>
<div class="selfPortrait">
<img src="indexSelfPortraitMid.png" alt="This is me."/>
<a href="https://github.com/davidbrowning">
<img class="spBottomLeft" src="languages.png" alt="Languages."/>
</a>
<a href="http://dutro.com">
<img class="spMiddleLeft" src="workExperience.png" alt="System and Network Administrator at Dutro Company."/>
</a>
<a href="resume_for_site.pdf">
<img class="spMiddle" src="resumeCircle.png" alt="Resume."/>
</a>
<a href="https://usu.edu">
<img class="spMiddleRight" src="education.png" alt="education."/>
</a>
<a href="https://github.com/davidbrowning">
<img class="spTopRight" src="projects.png" alt="Work Experience."/>
</a>
<p class="spTopRightText">
Hi! </br>
My name is Dave; </br>
I'm a Computer Science student working on my undergrad at Utah State University.</p>
<p class="spMidText">
I am currently a systems and network administrator at <a href="http://www.dutro.com" target="_blank">Dutro Company</a> where I manage file, application, and SQL servers, perform maintenence on company websites, and oversee Infrastructure updates and upgrades. </p>
<p class="spBottomText"> I have experience with MRP systems as well as Linux/UNIX and Windows servers and clients. I am fluent in c++, and have experience in the following languages: </p>
<p class="spList"> JavaScript, Java, SQL, HTML, CSS, PowerShell, JQuery, Nodejs, Perl, and Bash. I have experience with (and adore) git and GitHub. I am comfortable in any IDE, as well as CLI coding environments. I primarily use PC (<a href="https://www.reddit.com/r/pcmasterrace" target="_blank">PCMR!</a>), but am comfortable in a Linux/Unix/Mac environment as well. </p>
</div>
<br class='clear'>
<script src="jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1>My First Bootstrap Page</h1>
<p>This is some text.</p>
</div>
</body>
</html>