-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (43 loc) · 1.4 KB
/
index.html
File metadata and controls
52 lines (43 loc) · 1.4 KB
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
<!DOCTYPE html>
<!--
Landing page for final website.
Contains links to HTML cases from
New Perspectives on HTML5 and CSS3, 7th Edition
DEFAULT PATH TO HTML CASES: ./HTML_Projects/html#/html#_index.html/
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="./reset.css" rel="stylesheet" type="text/css" />
<link href="./index_styles.css" rel="stylesheet" type="text/css" />
<title> Home Page </title>
</head>
<body>
<header>
<h1> Welcome to my portfolio </h1>
<p>
In here you'll find links to various projects that I've worked on
as well as information about my education, interests, and other topics.
</p>
<header>
<section class="links">
<article class="html_projects">
<a href="./HTML_Projects/projects_index.html"> My HTML projects </a>
</article>
<article class="programs">
<a href="./Programs/programs_index.html"> Java/Python programs </a>
</article>
<article class="about_me">
<a href="./About_Me/about_me.html"> About Me </a>
</article>
</section>
<footer>
Contact me: <a href="mailto:sthompson@stcharlessd.org">
sthompson@stcharlessd.org</a>
<br>
My github: <a href="https://github.com/Sthomp123">
https://github.com/Sthomp123</a>
</footer>
</body>
</html>