-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet/stylesheet.css">
<meta charset="utf-8">
<title>Cameron Kirk Engineering</title>
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="bio.html">Bio</a>
<a href="projects.html">Projects</a>
<a href="pictures.html">Pictures</a>
</div>
<div class="main">
<h1>Cameron Kirk Engineering</h1>
<h4>Explore!</h4>
<a href="newpage.html"><button>Page 2</button></a>
<h1>I am a header 1, I am the biggest</h1>
<p id="para1">
Hello! I am a paragraph, and I will show you how paragraphs are
made to make information easy to read and enjoy!
</p>
<p>Notice that I added a section paragraph tag
and it pushed me to a new line?</p>
<h1 class="center">Text Formatting</h1>
<p class="center">I want to show you how to <b>bold</b>
words and how to <i>italicise</i>
words, because they help you add <u>emphasis</u>
to words that we deem <del>really</del>
incredibly <b>important</b>!
</p>
<h1>Lists</h1>
<h2>Programming Languages</h2>
<ul>
<li>C#</li>
<li>Python</li>
<li>Julia</li>
<li>C/C++</li>
</ul>
<h2>List of Engineering Projects</h2>
<ol>
<li>Unity Videogame</li>
<li>Julia programming</li>
<li>Cryptography</li>
<li>Hardware Graphics Data Path</li>
<li>Poker Theory</li>
</ol>
<h2>I'm the second biggest header, I'm a bit smaler</h2>
<h3>I am number 3! Notice I'm even smaller?</h3>
<h4>Why are we still shrinking?</h4>
<h5>Can you even read this small???</h5>
<h6>Don't step on me...</h6>
</div>
</body>
</html>