-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
152 lines (124 loc) · 5.69 KB
/
resources.html
File metadata and controls
152 lines (124 loc) · 5.69 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
151
152
<!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>
<!-- CSS Styles -->
<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>
</head>
<body class="text-white">
<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 -->
<!-- START THE FEATURETTES -->
<hr class="featurette-divider bg-white">
<div class="containerCenter"></div>
<div class="align-content-center">
<div class="image-container row">
<div class="col-md-3">
<a href="https://drive.google.com/drive/folders/1V18z1DTViucJGytw0tsulk1vCpTfk0rd?usp=drive_link" target="_blank">
<img src="img/Artboard 7 Large.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto clickable" width="500" height="500" alt="Inspiring modern architecture in water" role="img" aria-label="Inspiring modern architecture in water">
</a>
</div>
</div>
<!-- /END THE FEATURETTES -->
<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 an email 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>
<script>
document.getElementById("currentYear").innerHTML = new Date().getFullYear();
</script>
</div>
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KyZXEAg3QhqLMpG8r+MnEe5JgsE2lAjoRV9xSfPXaL8x0pB8DbfkzFtN0jc5z4nP" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>