-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
47 lines (38 loc) · 1.62 KB
/
home.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
<html lang="en">
<!--Metadata is stored here-->
<head>
<title>Ryan's Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<!--The content is specified here-->
<body>
<header>
<!--A navigation bar for my page-->
<nav>
<a href="./home.html">Home</a>
<a href="./about.html">About</a>
<a href="./portfolio.html">Portfolio</a>
<a href="./contact.html">Contact</a>
</nav>
</header>
<section>
<h1> The body is like hardware. The thoughts software. I'm just doing my best to stay aware.</h1>
</section>
<section class="statement">
<div>
<h1 style="font-size: 4vw; text-decoration: underline; margin-top: 40px;">Ryan Matthews</h1>
<p style="margin-top: 50px;"> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p> - some latin dude</p>
</div>
<img src="./images/myface.jpg" alt="isme">
</section>
<!--Important copyright statement-->
<div>
<p> Copyright © 2024 Rythmat. All Rights Reserved </p>
</div>
<footer>
<!-- Button to access my github -->
<a href="https://github.com/Rythmat"><img src="./images/github.png" alt="ryan github"></a>
</footer>
</body>
</html>