Merge branch 'master' of https://github.com/Guusvanmeerveld/Guusvanmeerveld
commit
4b2e7a476d
@ -1,42 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="stylesheet" href="/resources/css/cssall.css">
|
||||
<link rel="stylesheet" href="/resources/css/navbar.css">
|
||||
<script src="https://kit.fontawesome.com/340f4d917c.js" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/contact/css.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||
<title>Contact</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="stylesheet" href="/resources/css/cssall.css">
|
||||
<link rel="stylesheet" href="/resources/css/navbar.css">
|
||||
<script src="https://kit.fontawesome.com/340f4d917c.js" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/contact/css.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||
<title>Contact</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<section id="main">
|
||||
<h1>Contact opnemen?</h1>
|
||||
<i class="fas fa-address-card fa-10x"></i>
|
||||
</section>
|
||||
<section id="info">
|
||||
<h2>Neem contact met mij op</h2>
|
||||
<ul>
|
||||
<li><h4>TELEFOON</h4></li>
|
||||
<li>+06 123 456 78</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li><h4>EMAIL</h4></li>
|
||||
<li>example@email.com</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li><h4>LOCATIE</h4></li>
|
||||
<li>Niemandsland</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<script src="/resources/js/navbar.json.js"></script>
|
||||
<script src="/resources/js/insertNavbar.js"></script>
|
||||
<script src="/resources/js/javall.js"></script>
|
||||
|
||||
<body>
|
||||
<section id="main">
|
||||
<h1>Contact opnemen?</h1>
|
||||
</section>
|
||||
<section id="info">
|
||||
<h2>Neem contact met mij op</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<h4>TELEFOON</h4></li>
|
||||
<li>+06 123 456 78</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>
|
||||
<h4>EMAIL</h4></li>
|
||||
<li>example@email.com</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>
|
||||
<h4>LOCATIE</h4></li>
|
||||
<li>Niemandsland</li>
|
||||
</ul>
|
||||
</section>
|
||||
<script src="/resources/js/navbar.json.js"></script>
|
||||
<script src="/resources/js/insertNavbar.js"></script>
|
||||
<script src="/resources/js/javall.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,40 +1 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Playground</title>
|
||||
<link rel="stylesheet" href="/resources/css/cssall.css">
|
||||
<link rel="stylesheet" href="/resources/css/navbar.css">
|
||||
<link rel="stylesheet" href="/playground/css.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||
<script src="https://kit.fontawesome.com/340f4d917c.js" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="content">
|
||||
<div id="codeContent">
|
||||
<div>
|
||||
<button onclick="showCode('html')" class="langButton" id="htmlButton">HTML</button>
|
||||
<button onclick="showCode('css')" class="langButton" id="cssButton">CSS</button>
|
||||
<button onclick="showCode()" class="langButton" id="jsButton">JS</button>
|
||||
<button class="options" id="autoRun" onclick="autoRun()">AUTORUN</button>
|
||||
<button onclick="updateCode('run')" class="options">RUN</button>
|
||||
<textarea class="input langInput" id="htmlInput" onkeyup="updateCode('autoRun')" spellcheck="false"></textarea>
|
||||
<textarea class="input langInput" id="cssInput" onkeyup="updateCode('autoRun')" spellcheck="false"></textarea>
|
||||
<textarea class="input langInput" id="jsInput" onkeyup="updateCode('autoRun')" spellcheck="false"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<iframe id="htmlOutput"></iframe>
|
||||
</div>
|
||||
|
||||
<script src="/playground/emmet.min.js"></script>
|
||||
<script src="/resources/js/navbar.json.js"></script>
|
||||
<script src="/resources/js/insertNavbar.js"></script>
|
||||
<script src="/resources/js/javall.js"></script>
|
||||
<script src="/playground/js.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Playground</title> <link rel="stylesheet" href="/resources/css/cssall.css"> <link rel="stylesheet" href="/resources/css/navbar.css"> <link rel="stylesheet" href="/playground/css.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://kit.fontawesome.com/340f4d917c.js" crossorigin="anonymous"></script> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"></head><body> <div id="content"> <div id="codeContent"> <div> <button onclick="showCode('html')" class="langButton" id="htmlButton">HTML</button> <button onclick="showCode('css')" class="langButton" id="cssButton">CSS</button> <button onclick="showCode()" class="langButton" id="jsButton">JS</button> <button class="options" id="autoRun" onclick="autoRun()">AUTORUN</button> <button onclick="updateCode('run')" class="options">RUN</button> <textarea class="input langInput" id="htmlInput" onkeyup="updateCode('autoRun')" spellcheck="false"></textarea> <textarea class="input langInput" id="cssInput" onkeyup="updateCode('autoRun')" spellcheck="false"></textarea> <textarea class="input langInput" id="jsInput" onkeyup="updateCode('autoRun')" spellcheck="false"></textarea> </div></div><iframe id="htmlOutput"></iframe> </div><script src="/playground/emmet.min.js"></script> <script src="/resources/js/navbar.json.js"></script> <script src="/resources/js/insertNavbar.js"></script> <script src="/resources/js/javall.js"></script> <script src="/playground/js.js"></script></body></html>
|
||||
|
@ -1,31 +1 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="stylesheet" href="/resources/css/cssall.css">
|
||||
<link rel="stylesheet" href="/resources/css/navbar.css">
|
||||
<script src="https://kit.fontawesome.com/340f4d917c.js" crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||
<title>Vuurjongen en Watermeisje</title>
|
||||
<style>
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 94.7vh;
|
||||
border: 0;
|
||||
margin-top: 55px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<iframe id="game" src="https://html5.gamedistribution.com/3790681b69584409b7f681a8e400102d/" allowfullscreen></iframe>
|
||||
|
||||
<script src="/resources/js/navbar.json.js"></script>
|
||||
<script src="/resources/js/insertNavbar.js"></script>
|
||||
<script src="/resources/js/javall.js"></script>
|
||||
<script src="/vuurjongen-en-watermeisje-4/js.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="stylesheet" href="/resources/css/cssall.css"> <link rel="stylesheet" href="/resources/css/navbar.css"> <script src="https://kit.fontawesome.com/340f4d917c.js" crossorigin="anonymous"></script> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <title>Vuurjongen en Watermeisje</title> <style>iframe{width: 100%; height: 94.7vh; border: 0; margin-top: 55px;}</style></head><body> <iframe id="game" src="https://html5.gamedistribution.com/3790681b69584409b7f681a8e400102d/" allowfullscreen></iframe> <script src="/resources/js/navbar.json.js"></script> <script src="/resources/js/insertNavbar.js"></script> <script src="/resources/js/javall.js"></script> <script src="/vuurjongen-en-watermeisje-4/js.js"></script></body></html>
|
||||
|
Reference in new issue