-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatgpt.htm
104 lines (92 loc) · 2.62 KB
/
chatgpt.htm
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kontaktformular</title>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
#parallax {
background-image: url('lf2.png');
background-size: cover;
background-attachment: fixed;
height: 100vh;
position: relative;
display: flex;
justify-content: center;
align-items: center;
color: white;
text-align: center;
}
#parallax h1 {
font-size: 5em;
margin: 0;
text-shadow: 2px 2px #000000;
}
#formular {
padding: 50px;
background-color: #f2f2f2;
text-align: center;
}
#formular h2 {
margin-top: 0;
font-size: 2em;
font-weight: bold;
color: #333;
}
#formular input[type="text"], #formular input[type="email"], #formular textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
#formular button[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
@media screen and (min-width: 600px) {
#parallax {
height: 50vh;
}
#formular {
padding: 100px;
}
}
</style>
</head>
<body>
<section id="parallax">
<h1>Kontaktieren Sie uns</h1>
</section>
<section id="formular">
<h2>Nehmen Sie Kontakt auf</h2>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Ihr Name">
<label for="email">E-Mail-Adresse</label>
<input type="email" id="email" name="email" placeholder="Ihre E-Mail-Adresse">
<label for="nachricht">Nachricht</label>
<textarea id="nachricht" name="nachricht" placeholder="Ihre Nachricht"></textarea>
<button type="submit">Absenden</button>
</form>
</section>
<hr>
Frage: erstelle ein html formular zum absenden einer nachricht. mit responsive design und parallax effekt.
Antwort: ChatGPT
Als AI-Sprachmodell kann ich dir ein Beispiel für ein HTML-Formular mit responsive Design und Parallax-Effekt geben. Bitte beachte jedoch, dass die Implementierung eines solchen Effekts in der Regel über CSS und JavaScript erfolgt und viel Code erfordert. Hier ist das Beispiel:
<br>
In diesem Beispiel habe ich ein Parallax-Hintergrundbild im ersten Abschnitt (mit der ID "parallax") verwendet und das Formular im zweiten Abschnitt (mit der ID "formular") platziert. Das Design ist responsiv und
</body>
</html>