-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
150 lines (111 loc) · 4.75 KB
/
Copy pathcontact.html
File metadata and controls
150 lines (111 loc) · 4.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V43JNW54M3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V43JNW54M3');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Renderless - Draw more, render less</title>
<link rel="icon" href="img/icon.png" type="image/png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- Meta tags -->
<meta name="description" content="Welcome to Renderless, a visionary company inspired by a passion for authentic design. Renderless is dedicated to transforming the world of architecture and representation.">
<meta name="keywords" content="renderless, architecture sketchbook, the architect sketch book, the urbanist sketchbook, sketchbook, art movement you, sketches, creativity, draw more render less">
<!-- Enable HTTPS encryption -->
<script>
if (location.protocol !== 'https:') {
location.replace(`https:${location.href.substring(location.protocol.length)}`);
}
</script>
</head>
<body class="text-white ">
<style>
#backgroundVideo {
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -99;
}
.video-poster {
display: none;
}
@media (max-width: 768px) {
#backgroundVideo {
display: none;
}
.video-poster {
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('img/fondoazulvideo.png');
background-size: cover;
background-position: center;
z-index: -99;
}
}
</style>
<video autoplay loop muted playsinline poster="img/fondoazulvideo.png" id="backgroundVideo">
<source src="img/Sequence blue_150px.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<script>
window.addEventListener('DOMContentLoaded', function() {
var video = document.getElementById('backgroundVideo');
var poster = document.createElement('div');
poster.className = 'video-poster';
video.parentNode.insertBefore(poster, video);
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
video.style.display = 'none';
}
});
</script>
<!-- Navbar -->
<div class="text-center mt-5">
<a class="navbar-brand text-left text-white featurette-heading" href="index.html">RENDERLESS</a>
<a href="sketchbook.html" class="btn btn-custom btn-lg">Sketchbooks</a>
<a href="info.html" class="btn btn-custom btn-lg">Vision</a>
<a href="galerie.html" class="btn btn-custom btn-lg">Gallery</a>
<a href="resources.html" class="btn btn-custom btn-lg">Free Resources</a>
<a href="contact.html" class="btn btn-custom btn-lg">Contact</a>
</div>
</nav>
<!-- End Navbar -->
<hr class="featurette-divider bg-white">
<div class="image-container row">
<div class="col-md-5">
<a class="text-white" href="mailto:info@renderless.eu">
<img src="img/mail_women black shirt 2.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto clickable">
</a>
</div>
</div>
<div class="containerLeft text-center">
<div class="container-padding">
<h3 class="text-white">Contact</h3>
<p>For questions please contact us.</p>
<p><a class="text-white" href="mailto:info@renderless.eu">Send e-mail to info@renderless.eu</a></p>
</div>
<footer class="footer bg-light py-3">
<div class="container ">
<span class="text-muted">© RENDERLESS. All rights reserved. <span id="currentYear"></span></span>
</div>
</footer>
</body>
</html>