-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkills.html
106 lines (94 loc) · 2.93 KB
/
Skills.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
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Skills</title>
<link rel="stylesheet" href="styles.css">
<style>
.main {
text-align: center;
padding: 20px;
}
.main img {
max-width: 70%;
height: auto;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.social-links img {
width: 40px;
height: auto;
}
footer {
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
}
footer nav ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
list-style-type: none;
padding: 0;
margin: 10px 0;
}
footer nav ul li {
margin: 5px;
}
.social-links {
display: flex;
justify-content: center;
margin: 10px 0;
}
.more-button {
margin-top: 10px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
}
@media only screen and (max-width: 600px) {
footer nav ul {
flex-direction: column;
align-items: center;
}
footer nav ul li {
margin: 10px 0;
}
.more-button {
width: 100%;
text-align: center;
}
}
</style>
</head>
<body>
<main class="main">
<img src="/public/skills.png" alt="skills">
</main>
<footer class="footer">
<nav>
<ul>
<li><a href="index.html">Start</a></li>
<li><a href="UeberMich.html">Über Mich</a></li>
<li><a href="Motivation.html">Motivation</a></li>
<li><a href="Projekt.html">Android-Projekte</a></li>
<li><a href="AppFeatures.html">IOS-Projekte</a></li>
<li><a href="Projekt-Intellij.html">IntelliJ-Projekt</a></li>
</ul>
</nav>
<div class="social-links">
<a href="https://www.linkedin.com/in/marco-grimme"><img src="/public/ic_linkedin.png" alt="LinkedIn"></a>
<a href="mailto:[email protected]"><img src="/public/emailIcon.png" alt="E-Mail"></a>
<a href="https://github.com/Marco-Syntax?tab=repositories"><img src="/public/ic_github.png" alt="GitHub"></a>
</div>
<button class="more-button" onclick="window.location.href='https://github.com/Marco-Syntax?tab=repositories'">Zu meinen GitHub-Repositories</button>
<p>© 2024 Marco Grimme</p>
</footer>
</body>
</html>