-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
311 lines (292 loc) · 13.3 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html>
<title>MGRProgramming</title>
<meta charset="UTF-8">
<meta name="description" content="Solutions for the modern Web - Progressive Web Apps">
<meta name="keywords" content="Web-App,WebApp,Progressive,HTML5,Polymer,Firebase,HTML,CSS,JavaScript">
<meta name="author" content="Martin Graupner @ MGRProgramming">
<link rel="icon" type="image/ico" href="images/mgrprogramming.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif}
body, html {
height: 100%;
line-height: 1.8;
}
/* Full height image header */
.bgimg-1 {
background-position: center;
background-size: cover;
background-image: url("images/bridge3.jpg");
min-height: 100%;
}
.w3-bar .w3-button {
padding: 16px;
}
.cardsWrapper {
margin-top:64px;
display: flex;
flex-direction: row;
align-items: stretch;"
}
@media screen and (max-width: 990px) {
.cardsWrapper {
flex-wrap: wrap;
}
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card-2" id="myNavbar">
<a href="#home" class="w3-bar-item w3-button w3-wide" style="padding: 4px 16px;">
<img src="images/MGRProgrammingLogo.png" style="height: 48px">
</a>
<!-- Right-sided navbar links -->
<div class="w3-right w3-hide-small">
<a href="#about" class="w3-bar-item w3-button">Über uns</a>
<a href="#tools" class="w3-bar-item w3-button"><i class="fa fa-user"></i> Werkezuge</a>
<a href="#experience" class="w3-bar-item w3-button"><i class="fa fa-eye"></i> Erfahrung</a>
<a href="#projects" class="w3-bar-item w3-button"><i class="fa fa-th"></i> Projekte</a>
<a href="#contact" class="w3-bar-item w3-button"><i class="fa fa-envelope"></i> Kontakt</a>
</div>
<!-- Hide right-floated links on small screens and replace them with a menu icon -->
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-right w3-hide-large w3-hide-medium" onclick="w3_open()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<!-- Sidebar on small screens when clicking the menu icon -->
<nav class="w3-sidebar w3-bar-block w3-black w3-card-2 w3-animate-right w3-hide-medium w3-hide-large" style="display:none; right:0" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()" class="w3-bar-item w3-button w3-large w3-padding-16">Close ×</a>
<a href="#about" onclick="w3_close()" class="w3-bar-item w3-button">Über uns</a>
<a href="#tools" onclick="w3_close()" class="w3-bar-item w3-button">Werkzeuge</a>
<a href="#experience" onclick="w3_close()" class="w3-bar-item w3-button">Erfahrung</a>
<a href="#projects" onclick="w3_close()" class="w3-bar-item w3-button">Projekte</a>
<a href="#contact" onclick="w3_close()" class="w3-bar-item w3-button">Kontakt</a>
</nav>
<!-- Header with full-height image -->
<header class="bgimg-1 w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-left w3-text-white" style="padding:48px">
<span class="w3-jumbo w3-hide-small"> <br>Brücken bauen <br>heute</span><br>
<span class="w3-xxlarge w3-hide-large w3-hide-medium"> <br>Brücken bauen <br>heute</span><br>
<p><a href="#about" class="w3-button w3-white w3-padding-large w3-large w3-margin-top w3-opacity w3-hover-opacity-off">Learn more and start today</a></p>
</div>
<div class="w3-display-bottomleft w3-text-grey w3-large" style="padding:24px 48px">
<a href="https://twitter.com/mgrprogramming" target="link" class="w3-hover-text-white">
<i class="fa fa-twitter"></i></a>
<a href="https://plus.google.com/s/mgrprogramming" target="link" class="w3-hover-text-white">
<i class="fa fa-google-plus"></i></a>
<a href="mailto:[email protected]" class="w3-hover-text-white">
<i class="fa fa-envelope"></i>
</a>
<!--
<a href="#" class="w3-hover-text-white"><i class="fa fa-facebook-official"></i></a>
<a href="#" class="w3-hover-text-white"><i class="fa fa-flickr"></i></a>
<a href="#" class="w3-hover-text-white"><i class="fa fa-instagram"></i></a>
<a href="#" class="w3-hover-text-white"><i class="fa fa-twitter"></i></a>
<a href="#" class="w3-hover-text-white"><i class="fa fa-linkedin"></i></a>
-->
</div>
</header>
<!-- About Section -->
<div class="w3-container" style="padding:128px 16px" id="about">
<h3 class="w3-center">Über MGRProgramming</h3>
<p class="w3-center w3-large">Unsere Werte</p>
<div class="w3-row-padding w3-center" style="margin-top:64px">
<div class="w3-third">
<i class="fa fa-users w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Gesellschaft</p>
<p>Unsere Projekte helfen Menschen.</p>
</div>
<div class="w3-third">
<i class="fa fa-heart w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Passion</p>
<p>Wir lieben was wir entwickeln.</p>
</div>
<div class="w3-third">
<i class="fa fa-bolt w3-margin-bottom w3-jumbo w3-center"></i>
<p class="w3-large">Innovation</p>
<p>Moderne Methoden nutzen wir.</p>
</div>
</div>
</div>
<!-- Promo Section - "We know design" -->
<div class="w3-container w3-light-grey" style="padding:128px 16px">
<div class="w3-row-padding">
<div>
<h3>Wir kennen erweitertes Webdesign!</h3>
<p>Einfacher soll es gehen, mit Informationen aus dem Netz: Einfacher Zugang, einfache Navigation, einfache Nutzung und einfaches Programmieren.</p>
<p>Klare Struktur und einfache Bedienung, schneller Zugang zu Informationen und Anpassung and die Wünsche des Nutzers machen unsere Web-Apps erfolgreich.</p>
<p>Unsere Progressive Web Apps (PWA) bieten mehr als installierte Programme: Nutzer starten Sie mit einem Klick auf einen Link. Genauso können sie Informationen aus der Web-App teilen - mit nur einem Link. Der Empfänger öffnet die App mit wieder nur einem Klick. (Kein Suchen, Verifizieren, Herunterladen, Installieren von Apps mit vielen Berechtigungen)</p>
<p>PWAs laden schneller und können Funktionen von Geräten nutzen (z.B. Geodaten, Notifications, Kamera, Bluetooth). Beim Programmieren sind sie OS & Shop unabhängig, einfacher zu erstellen, zu pflegen und können schneller aktualisiert werden.</p>
<p>Weniger Programmieraufwand - weniger Kosten und mehr Fokus auf Anwendung & Vorteile für den Nutzer!</p>
</div>
</div>
</div>
<!-- Team Section -->
<div class="w3-container" style="padding:128px 16px" id="tools">
<h3 class="w3-center">UNSERE WERKZEUGE</h3>
<p class="w3-center w3-large">Womit wir Arbeiten - modern, effektiv, effizient</p>
<div class="w3-row-padding cardsWrapper">
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin-small">
<img src="images/HTML5.png" alt="HTML5" style="height:150px;">
<div class="w3-container">
<h3>HTML5</h3>
<p class="w3-opacity">Das Fundament</p>
<p>HTML ist die Karosse, JavaScript der Antrieb und CSS der Chique für Web-Apps.<br> </p>
</div>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-center w3-padding w3-margin-small">
<div class="w3-container">
<img src="images/Polymer.png" alt="Polymer" style="height:150px;">
<h3>Polymer</h3>
<p class="w3-opacity">Die Struktur</p>
<p>Mit Polymer läßt sich HTML5 (HTML, CSS und Javascript) in modularen Bausteinen schnell und preisgünstig (wieder)verwenden.</p>
</div>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin-small">
<div class="w3-container">
<img src="images/PWA.png" alt="PWA" style="height:150px;">
<h3>Progressive Web Apps</h3>
<p class="w3-opacity">Der Turbo</p>
<p>PWAs speichern Design und Daten beim Kunden. Beim nächsten Aufruf sind sie sofort verfügbar, müssen nicht heruntergeladen werden.</p>
</div>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin-small">
<img src="images/Firebase.png" alt="Firebase" style="height:150px;">
<div class="w3-container">
<h3>Firebase</h3>
<p class="w3-opacity">Die Quelle</p>
<p>Unser Web-Apps nutzen Daten. Firebase strukturiert sie, bietet Authentification und Datenschutz.</p>
</div>
</div>
</div>
</div>
<!-- Experience Section -->
<div class="w3-container w3-light-grey" style="padding:128px 16px" id="experience">
<h3 class="w3-center">ERFAHRUNGEN</h3>
<p class="w3-center w3-large">Angefangen hat alles mit Basic, dBase, C, TurboPascal...</p>
<div class="w3-row-padding cardsWrapper">
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin">
<h3>Aktive</h3>
<p>Auth, API, CSS, Firebase, Geolocation, HTML5, Material Design, Javascript, Polymer, Maps</p>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-center w3-padding w3-margin">
<h3>Nutzung bei Projektarbeit</h3>
<p>php, mySQL, git, gulp</p>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin">
<h3>Einblick</h3>
<p>Typescript, React, SASS, w3, materialize, bootstrap</p>
</div>
</div>
</div>
<!-- Experience Section -->
<div class="w3-container" style="padding:128px 16px" id="projects">
<h3 class="w3-center">PROJEKTE</h3>
<p class="w3-center w3-large"></p>
<div class="w3-row-padding cardsWrapper">
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin">
<a href="https://www.damawi.de" target="_blank">
<img src="images/Projekte/damawiTwitter.jpg" alt="DaMaWi.de" style="height:150px;">
</a>
<h3>DaMaWi.de</h3>
<p>Das Machen Wir - Ausflugsziele für Kinder und Familien</p>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-center w3-padding w3-margin">
<a href="https://online-memory.firebaseapp.com/" target="_blank">
<img src="images/Projekte/memory-leipzig-gplus.png" alt="Online-Memory" style="height:150px;">
</a>
<h3>Online-Memory</h3>
<p>Studie zum Möglichekeiten von Progressive Web Apps</p>
</div>
<div class="w3-col l4 w3-card-2 w3-center w3-padding w3-margin">
<h3>und mehr</h3>
<p>...</p>
</div>
</div>
</div>
<!-- Contact Section -->
<div class="w3-container w3-light-grey" style="padding:128px 16px" id="contact">
<h3 class="w3-center">KONTAKT</h3>
<p class="w3-center w3-large">Lernen wir uns kennen - Senden Sie uns eine Nachricht:</p>
<div class="w3-row-padding w3-center" style="margin-top:64px">
<div>
<p><i class="fa fa-map-marker fa-fw w3-xxlarge w3-margin-right"></i> Leipzig, DE</p>
<p><i class="fa fa-phone fa-fw w3-xxlarge w3-margin-right"></i> Phone: +49 172 8220075</p>
<p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope fa-fw w3-xxlarge w3-margin-right"> </i> [email protected]
</a>
</p>
<br>
</div>
<div class="w3-half">
<!--
<form action="/action_page.php" target="_blank" >
<p><input class="w3-input w3-border" type="text" placeholder="Name" required name="Name"></p>
<p><input class="w3-input w3-border" type="text" placeholder="Email" required name="Email"></p>
<p><input class="w3-input w3-border" type="text" placeholder="Subject" required name="Subject"></p>
<p><input class="w3-input w3-border" type="text" placeholder="Message" required name="Message"></p>
<p>
<button class="w3-button w3-black" type="submit">
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</p>
</form>
-->
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64">
<a href="#home" class="w3-button"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<a href="https://twitter.com/mgrprogramming" target="link" class="w3-hover-text-light-blue">
<i class="fa fa-twitter"></i></a>
<a href="https://plus.google.com/s/mgrprogramming" target="link" class="w3-hover-text-light-blue">
<i class="fa fa-google-plus"></i></a>
<a href="mailto:[email protected]" class="w3-hover-text-light-blue">
<i class="fa fa-envelope"></i>
</a>
<!--
<i class="fa fa-facebook-official w3-hover-text-indigo"></i>
<i class="fa fa-flickr w3-hover-text-red"></i>
<i class="fa fa-instagram w3-hover-text-purple"></i>
<i class="fa fa-linkedin w3-hover-text-indigo"></i>
-->
</div>
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank" class="w3-hover-text-green">w3.css</a></p>
</footer>
<script>
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Toggle between showing and hiding the sidebar when clicking the menu icon
var mySidebar = document.getElementById("mySidebar");
function w3_open() {
if (mySidebar.style.display === 'block') {
mySidebar.style.display = 'none';
} else {
mySidebar.style.display = 'block';
}
}
// Close the sidebar with the close button
function w3_close() {
mySidebar.style.display = "none";
}
</script>
<!--
To use this code on your website, get a free API key from Google.
Read more at: https://www.w3schools.com/graphics/google_maps_basic.asp
-->
</body>
</html>