-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
94 lines (74 loc) · 2.29 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RED.vision - Contact</title>
<meta name="description" content="RED.vision - Kontakt">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="css/core.css">
<link rel="stylesheet" href="css/theme.css">
</head>
<body class="sticky-header sticky-footer">
<!-- Preloader -->
<div id="preloader"></div>
<!-- Header -->
<header id="header">
<!-- Logo -->
<a href="index.html" class="logo">
<img src="img/logo-light.png" class="logo-light" alt="">
<img src="img/logo-dark.png" class="logo-dark" alt="">
</a>
<!-- Mobile Menu Icon -->
<a href="#" class="mob-menu">
<span></span><span></span><span></span>
</a>
<!-- Navigation -->
<nav class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- /Navigation -->
</header>
<!-- /Header -->
<!-- Main Content -->
<main id="main">
<!-- Contact Section -->
<section class="hero-fullscreen flex-center py-10" data-background="img/bg/contact.jpg" data-overlay="black; .8">
<div class="page-title-wrapper text-light text-left">
<h2 class="page-title bold">Contact Us</h2>
<p class="serif text-links mt-5">
<a href="#">Pfaffenthanner Weg 5, 93179 Brennberg</a>
</p>
<p class="serif text-links mt-5">
<a href="mailto:[email protected]">[email protected]</a>
<a href="#">01511 5050575</a>
</p>
</div>
</section>
<!-- /Contact Section -->
</main>
<!-- /Main Content -->
<!-- Footer -->
<footer id="footer">
<!-- Copyright -->
<div class="small text-links">
<small>© RED.vision | <a href="legal.html">Impressum/Datenschutz</a></small>
</div>
<!-- Social/Contact Links -->
<div class="small text-links">
<a href="https://www.instagram.com/red.vision.de/">Instagram</a>
<a href="https://www.youtube.com/channel/UCRf_3vwVLpJp9pRfZeMft7Q">YouTube</a>
<a href="https://www.facebook.com/red.vision.de/">Facebook</a>
</div>
</footer>
<!-- /Footer -->
<!-- JS -->
<script src="js/core.js"></script>
<script src="js/theme.js"></script>
</body>
</html>