This repository was archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
57 lines (57 loc) · 2.04 KB
/
about.html
File metadata and controls
57 lines (57 loc) · 2.04 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
<!DOCKTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="res/global/styles.css">
<link rel="shortcut icon" type="image/png" href="/res/media/images/favicon.png"/>
<title>DusterTheFirst</title>
<script src="/res/global/jquery-3.1.1.js"></script>
</head>
<body>
<!-- HEADER-->
<div id="header"></div>
<div id="headerspacer" class="desktop"> </div>
<div id="headerspacer" class="mobile"> </div>
<script src="res/include/headerinclude.js"></script>
<!-- /HEADER-->
<!-- JUMBOTRON-->
<div id="minitron">
<div class="contain">
<div class="title">About</div>
</div>
</div>
<!-- /JUMBOTRON-->
<!-- CONTENT-->
<link rel="stylesheet" type="text/css" href="/res/private/feed.css">
<div class="feeditem">
<a class="link">
<b><div class="title">This page</div></b>
</a>
<hr>
<div class="feedcontent">
I developed this page to practice HTML, CSS and JS<br>
I wrote all of the code, except for the JQuery library.<br>
The color scheme is based off of Google search results on mobile, cuz why not.
</div>
</div>
<div class="feeditem">
<a class="link">
<b><div class="title">Programming</div></b>
</a>
<hr>
<div class="feedcontent">
I am a student developer and I program everything in my free time, I am by no means a professional
</div>
</div>
<div class="feeditem">
<a class="link">
<b><div class="title">Website development</div></b>
</a>
<hr>
<div class="feedcontent">
I offer my services in web development.
</div>
</div>
<!-- /CONTENT-->
</body>
</html>