-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
87 lines (84 loc) · 3.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/d0c5025972.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="./pfp.jpg">
<title>YourName's Portfolio</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./projects.html">Projects</a></li>
</ul>
</nav>
</header>
<section class="banner">
<img src="./backgrounds/cool.gif" alt="Banner Image" class="blurred-img">
<div class="profile">
<img src="./pfp.jpg" alt="Profile Image">
<h1>YourName's Portfolio</h1>
<a href="https://github.com/YourName" class="social-icons"><i class="fa-brands fa-github fa-2x white-icon"></i></a>
<a href="https://discord.gg/Invite" class="social-icons"><i class="fa-brands fa-discord fa-2xl white-icon"></i></a>
</div>
</section>
<section class="projects">
<div class="project">
<div class="horizontal-separator"></div>
<div class="project-content">
<img src="projectsimgs/exampleprojectimage.png" alt="SolarHosting Logo" class="project-image">
<div class="separator"></div>
<div class="project-text">
<h2>Project 1</h2>
<p>
Some text talking about this project so people know what is it and how cool it what I dont know
but in what you want do like 5 - 6 sentences thats what I did for the one I did anyways have fun
with it :)
</p>
</div>
</div>
</div>
<div class="horizontal-separator"></div>
<div class="project">
<div class="project-content">
<div class="project-text-right">
<h2>Project 2</h2>
<p>
Some text talking about this project so people know what is it and how cool it what I dont know
but in what you want do like 5 - 6 sentences thats what I did for the one I did anyways have fun
with it :)
</p>
</div>
<div class="separator"></div>
<img src="projectsimgs/exampleprojectimage.png" alt="Project Image" class="project-image">
</div>
</div>
<div class="horizontal-separator"></div>
<div class="project">
<div class="project-content">
<img src="projectsimgs/exampleprojectimage.png" alt="Project Image" class="project-image">
<div class="separator"></div>
<div class="project-text">
<h2>Project 3</h2>
<p>
Some text talking about this project so people know what is it and how cool it what I dont know
but in what you want do like 5 - 6 sentences thats what I did for the one I did anyways have fun
with it :)
</p>
</div>
</div>
</div>
<div class="horizontal-separator"></div>
</section>
<footer>
<p style="text-align: center; margin: 20px 0;">
Copyright <a href="https://github.com/OddDevelopment/GlampPortfolio" target="_blank">GlampPortfolio</a> by
<a href="https://odd.rip" target="_blank">Odd</a>
</p>
</footer>
</body>
</html>