-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
56 lines (56 loc) · 2.54 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Contact</title>
</head>
<body>
<header>
<a href="index.html"><img src="images/logo.png" alt="Logo"></a>
<div class="menu-toggle" onclick="toggleMenu()">
<span class="hamburger-icon">☰</span>
</div>
</header>
<div class="menu-overlay" id="menuOverlay">
<div class="menu-toggle" onclick="toggleMenu()">
<span class="close-icon">✖</span>
</div>
<div class="menu-content">
<a class="menu-headline">PRODUCTS</a>
<a href="#">ADMPWD.E</a>
<a href="#">MIGRATION FRAMEWORK</a>
<a href="#">MANAGE-AUTOMATION ACCOUNT</a>
<a href="#">COSMOS DB HIGHLIGTER</a>
<a class="menu-headline" href="contact.html">CONTACT</a>
</div>
</div>
<main id="main-content">
<h1 class="h1-contact">Contact</h1>
<div class="contact-info">
<div class="contact-column">
<p><strong>Address:</strong> Vyskočilova 1481/4, Prague 4, 140 00</p>
<p><strong>Bank:</strong> Account Number: 123456789, Bank Name: Česká Spořitelna, a.s.</p>
<p><strong>Email:</strong> info@greycorbel.com</p>
</div>
<div class="contact-column">
<p><strong>ICO:</strong> 12345678</p>
<p><strong>DIČ:</strong> CZ12345678</p>
<p><strong>Phone:</strong> +123 456 789</p>
</div>
</div>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2562.0655462821255!2d14.453560976624116!3d50.047603416287814!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x470b9392f7c26d43%3A0xf178412d5d79851b!2sVysko%C4%8Dilova%201481%2F4%2C%20140%2000%20Praha%204-Michle!5e0!3m2!1scs!2scz!4v1719398816795!5m2!1scs!2scz" width="800" height="600" style="filter: grayscale(100%)" allowfullscreen=""></iframe>
</div>
</main>
<footer>
<p>you can also contact us directly: info@greycorbel.com</p>
<div class="social-icons">
<a href="https://www.linkedin.com" target="_blank"><img src="images/socialMedia/linkedin.png" alt="LinkedIn"></a>
<a href="https://www.github.com" target="_blank"><img src="images/socialMedia/github.png" alt="GitHub"></a>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>