-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutme.html
130 lines (115 loc) · 5.51 KB
/
Aboutme.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/Thing">
<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>Darklord Chief</title>
<!-- BOOTSTRAP -->
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/darkly/bootstrap.min.css" rel="stylesheet" integrity="sha384-S7YMK1xjUjSpEnF4P8hPUcgjXYLZKK3fQW1j5ObLSl787II9p8RO9XUGehRmKsxd" crossorigin="anonymous">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</script>
<style type="text/css">
body.c5 {
background-color: #000000;
background-image: url("https://darklordchief.com/pictures/DCMerge.jpg");
padding-top: 70px;
}
.container {
max-width: 900px !important;
}
.center {
text-align: center !important;
}
.left {
float: left;
}
.right {
float: right;
}
.justify {
text-align: justify;
}
.middle {
margin: 0 auto !important;
}
.well {
margin-bottom: 0px !important;
}
</style>
</head>
<body class="c5">
<div class="container c4">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="http://homepage.usachannel22.local/index.html">Network Homepage</a> -->
<a class="navbar-brand" href="https://darklordchief.com/index.html">
<img alt="Logo" height="30" src="https://darklordchief.com/pictures/logo_small_vectorC.png">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="https://darklordchief.com/Aboutme.html">About Me</a>
</li>
<li><a href="https://darklordchief.com/Contact.html">Contact</a>
</li>
<li><a href="https://darklordchief.com/ProjectArchive.html">Project List</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Projects <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="https://darklordchief.com/Camoverse.html">Camoverse</a>
</li>
<li><a href="https://darklordchief.com/Website.html">Website</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Gallery <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="https://darklordchief.com/Drawings.html">Drawings</a>
</li>
<li><a href="https://darklordchief.com/Stencils.html">Stencils</a>
</li>
<li><a href="https://darklordchief.com/Paintings.html">Paintings</a>
</li>
<li><a href="https://darklordchief.com/Photos.html">Photos</a>
</li>
</ul>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
<!-- [END HEADER] [ENSURE HEADER MATCHES ON EVERY PAGE] -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title center">About Me</h3>
</div>
<div class="panel-body">
My name is Edward Mast and I've been interested in drawing and video games almost my whole life, growing up i always wanted to attempt to make works of art and games that everyone can enjoy.
</div>
</div>
<!-- [BEGIN FOOTER] [ENSURE FOOTER MATCHES ON EVERY PAGE] -->
<div class="panel panel-default panel-body center">
<a href="https://darklordchief.com/index.html">
<div class="label label-info">© 2018 DarklordChief</div>
</a>
</div>
</div>
</body>