-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
87 lines (82 loc) · 4.17 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Contact Us - Responsive Page Design</title>
<link rel="shortcut icon" type="image/jpg" href="/images/news2.png"/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<div class="container">
<div class="contactInfo">
<div>
<h2>Contact Info</h2>
<ul class="info">
<li>
<span><img src="/images/location.png"></span>
<span>184 Ippokratous Street<br>
Athens, Gr<br>
11472</span>
</span>
</li>
<li>
<span><img src="/images/mail.png"></span>
<!-- <span>nassosanagn@gmail.com</span> -->
<span><a href = "mailto: nassosanagn@gmail.com">nassosanagn@gmail.com</a></span>
</li>
<li>
<span><img src="/images/call.png"></span>
<span>702-279-3488</span>
</li>
</ul>
</div>
<ul class="sci">
<li><a href="https://www.facebook.com/nassosanagn/"><img src="/images/1.png"></a></li>
<li><a href="https://www.instagram.com/nassosanagn_/?hl=el"><img src="/images/3.png"></a></li>
<li><a href="https://twitter.com/nassosanagn"><img src="/images/2.png"></a></li>
<li><a href="https://www.linkedin.com/in/nassos-anagnostopoulos-2b9631196/"><img src="/images/5.png"></a></li>
</ul>
</div>
<div class="contactForm">
<h2>Send a Message</h2>
<div class="formBox">
<div class="inputBox w50">
<input type="text" name="" required>
<span>First Name</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Last Name</span>
</div>
<div class="inputBox w50">
<input type="email" required>
<span>Email Address</span>
</div>
<div class="inputBox w50">
<input type="text" required>
<span>Mobile Number</span>
</div>
<div class="inputBox w100">
<textarea required></textarea>
<span>Write your message here...</span>
</div>
<div class="inputBox w100">
<input type="submit" value="Send">
</div>
</div>
</div>
</section>
</body>
</html>