-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (71 loc) · 4.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub | mathias56k</title>
<link rel="stylesheet" href="styles.css">
<!-- Google Font (Poppins) -->
<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:wght@100;200;400;600&display=swap" rel="stylesheet">
<!-- Google Icon -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
</head>
<body>
<!-- Title -->
<h1 id="title">mathias56k GitHub</h1>
<!-- Projects -->
<div id="projects">
<div class="projects-section">
<h1 class="projects-title">PROJECTS</h1>
<hr>
<div class="projects">
<div class="proj-icon">
<div class="project">
<h2 class="project-name">TOP Landing Page</h2>
<p class="project-desc">This is a project on <a class="link-hov link-in-text" href="https://www.theodinproject.com/" target="_blank">The Odin Project</a>. In this project the mission is to make a good looking simple landing page using flexbox.</p>
<a class="done">DONE</a>
<br><i class="material-icons html-icon">html</i> <i class="material-icons css-icon">css</i>
</div>
<a class="icon-link" href="https://github.com/mathias56k/odin-LandingPage" target="_blank"><i class="material-icons">open_in_new</i></a>
</div>
<div class="proj-icon">
<div class="project">
<h2 class="project-name">TOP Recipes</h2>
<p class="project-desc">This was the first project in <a class="link-hov link-in-text" href="https://www.theodinproject.com/" target="_blank">The Odin Project</a>. This is not and will never be one of my best projects but it is the first. There is a combination of simple HTML & CSS but it is unorganized and not commented or structured properly.</p>
<a class="done">DONE</a>
<br><i class="material-icons html-icon">html</i> <i class="material-icons css-icon">css</i>
</div>
<a class="icon-link" href="https://github.com/mathias56k/odin-recipes/" target="_blank"><i class="material-icons">open_in_new</i></a>
</div>
<div class="proj-icon">
<div class="project">
<h2 class="project-name">TOP Rock Paper Scissors</h2>
<p class="project-desc">This project is a part of <a class="link-hov link-in-text" href="https://www.theodinproject.com/" target="_blank">The Odin Project</a>. The project mostly consists of JavaScript programming. The main goal is to have the player play rock paper scissors against a computer. The project is in progress because later in the course I will need to update the page with CSS and add more updates into JavaScript.</p>
<a class="in-progress">IN PROGRESS</a>
<br><i class="material-icons html-icon">html</i> <i class="material-icons css-icon">css</i><i class="material-icons js-icon">javascript</i>
</div>
<a class="icon-link" href="https://github.com/mathias56k/odin-rps" target="_blank"><i class="material-icons">open_in_new</i></a>
</div>
<!-- <div class="proj-icon">
<div class="project">
<h2 class="project-name">Project Name</h2>
<p class="project-desc">Project Description Project Description Project Description Project Description Project Description Project Description Project Description Project Description Project Description Project Description </p>
</div>
<a class="icon-link" href="#" target="_blank"><i class="material-icons" href="#">open_in_new</i></a>
</div> -->
</div>
<hr style='margin-top: -40px'>
<a href="https://github.com/mathias56k/random-projects"><h3 class="additional-links">Random Projects</h3></a>
</div>
</div>
<!-- Footer -->
<div class="footer">
<a class="footer-item link-hov" href="https://github.com/mathias56k" target="_blank">GitHub</a>
<a class="footer-item link-hov" href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">Buy Me A Coffee</a>
<a class="footer-item link-hov" href="https://twitter.com/56k56k56k" target="_blank">Twitter</a>
</div>
</body>
</html>