-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 1.97 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
<!---- Bradley Schapf's personal website ---->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bradley Schapf</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="styles.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Bradley Schapf</h1>
<div id="subtitle-container">
<p>Red River College ● Business IT Student</p>
<div id="profile">
<img src="images/brad1.png" alt="Bradley Schapf"/>
</div>
</div>
</header>
<nav id="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="contactpage.html">Contact page</a></li>
</ul>
</nav>
<main id="index-main">
<h1 id="fade-animation">Hello There</h1>
<div id="main-paragraphs">
<p id="typing-animation">Welcome. I'm excited to see you here.</p>
<p id="cursor-animation">|</p>
</div>
</main>
<footer>
<p id="footer-text">The only relevant Socials:</p>
<div id="social-links">
<a href="https://github.com/BradleySchapf"><img src="images/github.png" alt="Github account link"></a>
<a href="https://www.linkedin.com/in/bradley-schapf-821290239/"><img src="images/linkedin.png" alt="LinkedIn account link"></a>
</div>
<nav id="footer-navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="contactpage.html">Contact page</a></li>
</ul>
</nav>
</footer>
</body>
</html>