-
Notifications
You must be signed in to change notification settings - Fork 0
/
iletisim.html
72 lines (49 loc) · 2.02 KB
/
iletisim.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
<!DOCTYPE html>
<html lang="tr">
<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="style.css" />
<title>İletişim | Teknoloji Merkezi</title>
</head>
<body class="body">
<header class="head">
<h1>Teknoloji Merkezi</h1>
<a href="index.html" target="_blanked"> Ana Sayfa</a> <a href="hakkimizda.html" target="_blanked"> Hakkımızda</a> <a href="eğitimlerimiz.html" target="_blanked"> Eğitimlerimiz<a> <a href="iletisim.html"> İletişim</a>
</header>
<adres class="adres">
<h2>Bize Ulaşın</h2>
<b>Adres:</b>
<address>
Göztepe mahallesi, Konak<br>
İZMİR
</address>
<br>
<b>Telefon:</b>
<a href="tel:05530000000">05530000000</a>
<br> <br>
<b>E-posta:</b>
<a href="mailto:teknolojimerkezi@example.tr">teknolojimerkezi@example.tr</a>
</adres>
<contactus class="contact_us">
<h2>İletişim Formu</h2>
<form action="/action_page.php">
<label for="firstname">Adınız:</label><br>
<input type="fnama" id="fname" name="Ad" ><br>
<label for="lastname">Soyadınız:</label>
<br>
<input type="text" id="lname" name="lname" ><br>
<label for="Email>">E-Mail Adresiniz:</label><br>
<input type="email" name="email">
<br>
<label for="tel">Telefon Numaranız:</label><br>
<input type="tel" name="telofonNo" pattern=""><br>
<label for="mesaj">Mesajınız:</label><br>
<textarea name="Mesaj" id="mesaj" cols="30" rows="10"></textarea><br>
<input type="submit" value="Gönder">
<input type="reset" value="Temizle">
</form>
</contactus>
</body>
</html>