-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (91 loc) · 3.51 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
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is my website. Visit it if you want.">
<meta property="og:title" content="4yman">
<meta property="og:type" content="profile">
<meta property="og:url" content="https://4yman-0.github.io">
<meta property="og:image" content="/img/pfp.webp">
<meta property="og:image:width" content="474">
<meta property="og:image:height" content="474">
<link rel="stylesheet" href="css/fixes.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/page.css">
<link rel="stylesheet" href="index.css">
<link rel="shortcut icon favicon" href="img/favicon.png">
<title>4yman</title>
</head>
<body>
<header class="header">
<h1 class="logo">4yman</h1>
<nav class="nav">
<ul class="nav-list">
<li class="nav-list-item"><a href="#hero">Hello</a></li>
<li class="nav-list-item"><a href="#things">Things</a></li>
<li class="nav-list-item"><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
<section class="hero" id="hero">
<div class="hero-img-container">
<img
class="hero-img"
src="img/pfp.webp"
width="474"
height="474"
alt="Profile picture">
</div>
<div class="hero-txt">
<h2 class="hero-txt__h2">Hello...</h3>
<p class="hero-txt__p">
I use a PC and I have no idea what I am doing...
</p>
<a class="button button--focus hero-txt__btn" href="#things">Things</a>
</div>
</section>
<section class="things" id="things">
<h2 class="things__txt">Things:</h2>
<ul class="links-grid">
<li class="link-grid-item">
<a href="archive/webgames">few (two) games</a>
</li>
<li class="link-grid-item">
<a href="verbose-webpage">browser information collector</a>
</li>
<li class="link-grid-item">
<a href="archive/foobar.ai">fake AI website</a>
</li>
<li class="link-grid-item">
<p>And nothing else important...</p>
</li>
</ul>
</section>
<section class="contact" id="contact">
<h2 class="contact__txt">Contact me:</h2>
<ul class="links-flex">
<li class="link-flex">
<a class="button button--focus link-flex__btn"
href="https://www.github.com/4yman-0">
<img class="link-flex__icon" src="img/gh.svg" alt="icon">
Github
</a>
</li>
</ul>
</section>
</main>
<footer class="footer">
<pre class="footer__copy">© 2024 4yman, All Rights Reserved.</pre>
<noscript class="footer__no-js">
<pre>If you're reading this, I think your browser does not support JavaScript.</pre>
</noscript>
<!-- If you're reading this. I think you use DevTools -->
</footer>
<script>
// Go back to beginning of the page.
history.scrollRestoration = "manual";
</script>
</body>
</html>