-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (116 loc) · 3.45 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meine Moderne Web-UI-Vorlage</title>
<style>
:root {
--primary-color: #3498db;
--secondary-color: #2c3e50;
--text-color: #333;
--background-color: #f4f4f4;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: var(--background-color);
color: var(--text-color);
}
header {
background-color: var(--primary-color);
color: white;
padding: 1rem;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav {
background-color: var(--secondary-color);
padding: 0.5rem;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: var(--primary-color);
}
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.card {
background-color: white;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
footer {
background-color: var(--secondary-color);
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
@media (max-width: 768px) {
nav ul {
flex-direction: column;
align-items: center;
}
nav ul li {
margin: 0.5rem 0;
}
}
</style>
</head>
<body>
<header>
<h1>Willkommen zu meiner modernen Web-UI-Vorlage</h1>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">Über uns</a></li>
<li><a href="#services">Dienstleistungen</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
</nav>
<main>
<div class="card">
<h2>Hauptinhalt</h2>
<p>Dies ist der Hauptinhalt Ihrer Webseite. Hier können Sie Ihren spezifischen Inhalt hinzufügen.</p>
</div>
<div class="card">
<h2>Funktionen</h2>
<p>Entdecken Sie die vielfältigen Funktionen unserer modernen Web-UI-Vorlage.</p>
</div>
<div class="card">
<h2>Responsive Design</h2>
<p>Unsere Vorlage passt sich perfekt an verschiedene Bildschirmgrößen an.</p>
</div>
</main>
<footer>
<p>© 2024 Meine Moderne Web-UI-Vorlage. Alle Rechte vorbehalten.</p>
</footer>
</body>
</html>