-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontakt.html
221 lines (160 loc) · 7.86 KB
/
kontakt.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
<title>Kontakt</title>
</head>
<body>
<nav>
<ul>
<!-- <li><a class="logo" href="index.html"><img src="logo/logo5.png" alt="logo"></a></li> -->
<li><a href="min_portfolio.html">Portfolio</a></li>
<li><a href="index.html">CV</a></li>
<li><a href="personligt_brev.html">Resumé</a></li>
<li><a href="projekt.html">Projekt</a></li>
<li><a href="kontakt.html" class="contact current">Kontakt</a></li>
</ul>
</nav>
<div class="hero-contact">
<h1>Contact me</h1>
<!-- <p>Fill in the form below to send me a message</p> -->
</div>
<!-- <div class="form-container">
<div class="form-content">
<form action="">
<label for="name">Name</label>
<input type="text" id="name" required>
<label for="email">Email</label>
<input type="text" id="email" required>
<label for="number">Phone number</label>
<input type="text" id="number">
<label for="projects">Which one is your favorite of my projects?</label> <br>
<select name="projects" id="projects">
<option value="project1">Project 1</option>
<option value="project2">Project 2</option>
<option value="project3">Project 3</option>
<option value="project4">Project 4</option>
<option value="project5">Project 5</option>
</select> <br>
<p>Which is your favorite language?</p>
<label for="html">HTML</label>
<input type="radio" id="html" name="favorite_language">
<label for="css">CSS</label>
<input type="radio" id="css" name="favorite_language">
<label for="javascript">JavaScript</label>
<input type="radio" id="javascript" name="favorite_language">
<label for="coding">Coding</label>
<input type="checkbox" name="hobbies" id="coding" value="coding">
<label for="drawing">Drawing</label>
<input type="checkbox" name="hobbies" id="drawing" value="drawing">
<label for="music">Music</label>
<input type="checkbox" name="hobbies" id="music" value="music">
<textarea name="" id="message" cols="52" rows="10" placeholder="Send a message..."></textarea>
<input type="button" value="Send" id="form-btn">
</form>
</div>
</div> -->
<!-- <div class="testing-form-container">
<div class="testing-form-content-left">
<label for="fname">Förnamn</label> <br>
<input class="leftside" type="text" id="fname">
<label for="lname">Efternamn</label> <br>
<input class="leftside" type="text" id="lname">
<label for="email">Email</label> <br>
<input class="leftside" type="text" id="email">
</div>
<div class="testing-form-content-right">
<label for="fnameRight">Förnamn</label> <br>
<input class="rightside" type="text" id="fnameRight">
<label for="lnameRight">Efternamn</label> <br>
<input class="rightside" type="text" id="lnameRight">
<label for="emailRight">Email</label> <br>
<input class="rightside" type="text" id="emailRight">
</div>
</div> -->
<div class="testing-form-container">
<form name="message" method="post">
<section>
<div style="float: left; margin-right: 50px; width: 360px;">
<label for="fname">First name</label>
<input id="fname" type="text" name="fname">
</div>
<div style="float:left; width: 360px;">
<label for="lname">Last name</label>
<input id="lname" type="text" name="lname">
</div>
<!-- <br style="clear:both;" /> -->
</section>
<section>
<div style="float: left; margin-right: 50px; width: 360px;">
<label for="email">Email</label>
<input id="email" type="text" name="email">
</div>
<div style="float:left; width: 360px;">
<label for="number">Phone number</label>
<input id="number" type="text" name="number">
</div>
<!-- <br style="clear:both;" /> -->
</section>
<section>
<label for="projects">Which one of my projects is your favorite?</label>
<select name="projects" id="projects" style="float: left; margin-right: 50px; width: 770px;">
<option value="project1">Project 1</option>
<option value="project2">Project 2</option>
<option value="project3">Project 3</option>
<option value="project4">Project 4</option>
<option value="project5">Project 5</option>
</select>
</section>
<section>
<label>Which is your favorite language?</label>
<div style="float: left; margin-right: 50px; width: 240px;">
<label for="html">HTML</label>
<input id="html" type="radio" name="favorite_language">
</div>
<div style="float: left; margin-right: 50px; width: 240px;">
<label for="css">CSS</label>
<input id="css" type="radio" name="favorite_language">
</div>
<div style="float: left; width: 240px;">
<label for="javascript">JavaScript</label>
<input id="javascript" type="radio" name="favorite_language">
</div>
</section>
<section>
<div style="float: left; margin-right: 50px; width: 240px;">
<label for="coding">Coding</label>
<input type="checkbox" name="hobbies" id="coding">
</div>
<div style="float: left; margin-right: 50px; width: 240px;">
<label for="drawing">Drawing</label>
<input type="checkbox" name="hobbies" id="drawing">
</div>
<div style="float: left; width: 240px;">
<label for="music">Music</label>
<input type="checkbox" name="hobbies" id="music">
</div>
</section>
<section>
<div style="float: left;">
<textarea id="message" cols="102" rows="10" placeholder="Send a message..."></textarea>
</div>
</section>
<section>
<div style="float: left; width: 770px;">
<input type="button" value="Send" id="form-btn">
</div>
</section>
<!--
<textarea name="" id="message" cols="52" rows="10" placeholder="Send a message..."></textarea>
<input type="button" value="Send" id="form-btn">
</form> -->
</form>
</div>
<script src="script.js"></script>
</body>
</html>