-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
63 lines (49 loc) · 2.11 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<meta charset="UTF-8">
<link rel="icon" href="images/octo.ico">
<link rel="stylesheet" href="home_style.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>About</h1>
</header>
<main>
<nav>
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="legal.html">Legal Disclaimer</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
<article>
<h2>About this Project</h2>
<p>
This project was constructed as the final project for the Summer Introduction to Web Development course (202030-CS10310)
taught by Professor Ganesh Chandrasekaran at Rowan University.</br>
This project combines HTML5, CSS, JavaScript, PHP, and the creator's passion for cybersecurity.
</p>
<h2>About the Creator</h2>
<img class="resize" src="images/Shanni headshot.jpg" alt="Author">
<p>
The creator of this project is Shanni Rosa Prutchi. She is a Senior Computing and Informatics student focusing on Information Security.</br>
Her favorite animal is the octopus 🐙, she loves to read 📖, she follows no less than 20 podcasts 🎧, and is an avid cross-stitcher.
</p>
</br>
</article>
</main>
<footer>
This is not to be used aside from educational purposes.
</footer>
</body>
</html>