-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.42 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="cwstyle.css" type="text/css">
<meta charset="utf-8">
<title>Index</title>
</head>
<body>
<div class="header">
<h1> Coursework: Assessment 1 </h1>
</div>
<div class="navbar">
<a href="#home">Index</a>
<a href="design.html">Design</a>
<div class="dropdown">
<button class="dropbtn">Ciphers
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="rot13/rot13.html">ROT13 Encoder</a>
<a href="Base64/base64.html">Base64 Encoder</a>
<a href="morse/morse.html">Morse Encoder</a>
</div>
</div>
</div>
<div class="row">
<div class="column side">
</div>
<div class="column middle">
<h2>Welcome!</h2>
<p>This is my coursework submission for SET08101 Web Technologies at Edinburgh Napier University. <p>
<p>The purpose of this website is to demonstrate the use of Hyper-Text-Markup-Language (<strong>HTML</strong>), Cascading Style Sheets (<strong>CSS</strong>) and <strong>JavaScript</strong>.</p>
<p>This website allows you to test various encoding methods. These can be seen in the Ciphers drop down tab in the navigation bar. </p>
<h4>Enjoy!</h4>
</div>
<div class="column side">
</div>
</div>
<div class="footer">
<p>Author: Oliver Thornewill von Essen </p>
<p>Date: 26 Feb 2018 </p>
</div>
</body>
</html>