-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (82 loc) · 5.03 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
<!DOCTYPE html SYSTEM "about:legacy-compat">
<html dir="ltr" lang="nl-be" class="no-js" prefix="og: http://ogp.me/ns#">
<head>
<!-- Character encoding -->
<meta charset="UTF-8">
<!-- Latest version of rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Mobile Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Most important SEO tag -->
<title>HTML5 | Webdesign II | GDM</title>
<!-- Other SEO friendly tags -->
<meta name="description" content="Lees hier alles over nieuwe media, html5 en andere ontwikkelingen in webdevelopment en mobile development. De docenten NMD willen graag hun kennis delen met jou!">
<meta name="keywords" content="HTML5, JavaScript, jQuery, CSS3">
<meta name="author" content="Arteveldehogeschool - Bachelor in de grafische en digitale media | MMP">
<meta name="copyright" content="Copyright 2010-17 Arteveldehogeschool. All Rights Reserved.">
<!-- OpenGraph -->
<meta property="og:type" content="website">
<meta property="og:title" content=">HTML5 | Webdesign II | GDM">
<meta property="og:description" content="Lees hier alles over nieuwe media, html5 en andere ontwikkelingen in webdevelopment en mobile development. De docenten NMD willen graag hun kennis delen met jou!">
<meta property="og:url" content="http://www.gdm.gent/">
<meta property="og:site_name" content="GDM.GENT">
<meta property="og:image" content="assets/images/ahs.png">
<meta property="og:image:width" content="129">
<meta property="og:image:height" content="129">
<!-- humans.txt -->
<link rel="author" type="text/plain" href="/humans.txt">
<!-- DNS prefech for CDN -->
<link rel="dns-prefetch" href="//cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="//code.jquery.com">
<link rel="dns-prefetch" href="//maxcdn.bootstrapcdn.com">
<!-- Icons -->
<!-- http://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="assets/icons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/icons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="assets/icons/manifest.json">
<link rel="mask-icon" href="assets/icons/safari-pinned-tab.svg" color="#ee9900">
<link rel="shortcut icon" href="assets/icons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="GDM">
<meta name="application-name" content="GDM">
<meta name="msapplication-config" content="assets/icons/browserconfig.xml">
<!-- Stylesheets: Vendors -->
<link rel="stylesheet" media="all" href="vendor/normalize/normalize.css">
<!-- Stylesheets: App -->
<link rel="stylesheet" media="all" href="css/fonts.css">
<link rel="stylesheet" media="all" href="css/typography.css">
<link rel="stylesheet" media="all" href="css/index.css">
<link rel="stylesheet" media="all" href="./css/grid.css">
<!-- Modernizr: feature detection -->
<script src="vendor/modernizr/modernizr.min.js"></script>
</head>
<body>
<div class="sf-grid__container">
<div class="sf-grid__row ">
<div class="sf-grid__column-xxsm-3 sf-grid__column-xsm-3 sf-grid__column-sm-3 sf-grid__column-md-3 sf-grid__column-lg-3 splashpage_logo color1" id="splash_left">
<h1> Web and you</h1>
<h2 class="lustana">start the online adventure</h2>
<img src="./assets/images/logo.png" alt="logo" id="logo_splash">
</div>
<div class="sf-grid__column-xxsm-9 sf-grid__column-xsm-9 sf-grid__column-sm-9 sf-grid__column-md-9 sf-grid__column-lg-9 splashpage_logo">
<div class="sf-grid__row" id="div_img_splash_page" >
<div class="sf-grid__column-xxsm-12 sf-grid__column-xsm-12 sf-grid__column-sm-12 sf-grid__column-md-12 sf-grid__column-lg-12 splash_page_background_img">
<div> </div>
</div>
</div>
<div class="sf-grid__row clearfix" >
<a href="./pages/home.html"> <div class="nav_square"><img src="./assets/images/home_icon.png" alt="home icon"> <p>Home</p></div></a>
<a href="./pages/aanbod.html"><div class="nav_square"> <img src="./assets/images/aanbod_icon.png" alt="home icon" id=""> <p>aanbod</p></div></a>
<a href="./pages/portfolio.html"><div class="nav_square"> <img src="./assets/images/portfolio_icon.png" alt="home icon"> <p>portfolio</p></div></a>
<a href="./pages/over.html"> <div class="nav_square"> <img src="./assets/images/over_icon.png" alt="home icon"> <p>over</p></div></a>
<a href="./pages/contact.html"> <div class="nav_square"> <img src="./assets/images/contact_icon.png" alt="home icon"> <p>contact</p></div></a>
</div>
</div>
</div>
</div>
<!-- Scripts: Vendors -->
<!-- For example: jQuery, lodash, handlebars, ... -->
<!-- Scripts: App -->
<script src="js/main.js"></script>
</body>
</html>