-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertificates.html
49 lines (46 loc) · 1.81 KB
/
certificates.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" /> <!-- Just plain nessessary -->
<title>Cloaking_Ocean | Coding and Game Design</title> <!-- Setting the Title to Exitium.org -->
<link rel="stylesheet" href="main.css"> <!-- Linking to the main.css StyleSheet -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</head>
<body>
<div id="big_wrapper"> <!-- Centers Website -->
<header id="top_header"> <!-- Header of website -->
<!-- <h1>Welcome to Exitium.org!</h1> -->
<div id="exitiumimage"><img height="50" src="cloakingocean.png"/></div>
</header>
<nav id="top_menu"> <!-- Main Naviation For Website -->
<ul> <!-- Unordered List -->
<li><a href="index.html">Home</a></li> <!-- List Item -->
<li><a href="bukkit.html">Bukkit</a></li>
<li><a href="java.html">Java</a></li>
<li><a href="spyhop.html">SpyHop</a></li>
<li><a href="unity.html">Unity</a></li>
<li><a href="blog.html">Blog</a></li>
<li id="current">Certificates</li>
</ul>
</nav>
<section id="main_section"> <!-- Where all the important stuff goes (Body) -->
<article id="certificatesarticle"> <!-- Groups Similar Information Together / Has it's own layout -->
<img src="certificates/programmingtwo.png"/>
</br>
<img src="certificates/networking.png"/>
</br>
<img src="certificates/networkpro.png"/>
</br>
<img src="certificates/maintenance.png"/>
</br>
<img src="certificates/pcpro.png"/>
</br>
<img src="certificates/pathway.png"/>
</article>
</section>
<footer id="the_footer"> <!-- References and Copyright -->
Custom coded by Cloaking_Ocean :D
</footer>
</div>
</body>
</html>