-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
54 lines (49 loc) · 1.13 KB
/
main.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
<!DOCTYPE html>
<html>
<title>Karim's Corner</title>
<body style="background-color:#c5d7ee">
<header style="font-size: 50px; text-align: center;">
Karim Abboud
<nav style="text-align: center; font-size: 18px">
<a href="#">Main Page</a> |
<a href="contact.html">Contact Info</a> |
<a href="https://www.linkedin.com/in/karimabboud/">LinkedIn</a>
</nav>
</header>
<main>
<article>
<section>
<p>
Hi, I'm Karim. I am in CS at Ryerson University. I like video games.
</p>
</section>
<aside>
<figure>
<img src="logo.png"
alt="Ryerson University"
style="width:225px;">
<figcaption>
<details>
<summary>Ryerson University</summary>
<pre>
Ryerson University was founded
in 1948 originally as the Ryerson
Institute of Technology and was
renamed to Ryerson Polytechnic
University in 1993, before
finally changing to its current
name in 2002.
</pre>
</details>
</figcaption>
</figure>
</aside>
</article>
</main>
<footer style="text-align: center; position:fixed; bottom:0; width:100%;">
<div style="text-align: center;">
<a href="#">Back to Top</a>
</div>
</footer>
</body>
</html>