Change the home page
parent
7b9fb321d1
commit
2d12c45c59
@ -0,0 +1,41 @@
|
|||||||
|
<!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>Thank you</title>
|
||||||
|
<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>
|
||||||
|
<style>
|
||||||
|
.mainContent {
|
||||||
|
background-color: #33353d;
|
||||||
|
height: 100%;
|
||||||
|
padding-top: 15rem;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
h1, p {
|
||||||
|
width: 80%;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="mainContent">
|
||||||
|
<h1 style="font-size: 5rem;">Thanks for submitting your message</h1><br>
|
||||||
|
<p onclick="window.open('/', '_self')" style="cursor:pointer;">Click here to go home</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="/resources/js/navbar.json.js"></script>
|
||||||
|
<script src="/resources/js/insertNavbar.js"></script>
|
||||||
|
<script src="/resources/js/javall.js"></script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,31 @@
|
|||||||
|
.mainContent {
|
||||||
|
height: 100vh;
|
||||||
|
width: 100%;
|
||||||
|
padding: 7rem;
|
||||||
|
padding-bottom: 0;
|
||||||
|
background-color: #222226;
|
||||||
|
}
|
||||||
|
#inputCode {
|
||||||
|
width: 100%;
|
||||||
|
height: 85%;
|
||||||
|
}
|
||||||
|
.langButton {
|
||||||
|
background-color: rgb(59, 60, 69);
|
||||||
|
border: 0;
|
||||||
|
color: white;
|
||||||
|
float: left;
|
||||||
|
padding: 1rem 1.5rem;
|
||||||
|
}
|
||||||
|
#run {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
@media screen and (min-width:0px) and (max-width:1000px) {
|
||||||
|
.mainContent {
|
||||||
|
padding: 2rem;
|
||||||
|
padding-top: 5rem;
|
||||||
|
}
|
||||||
|
.langButton {
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
<!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>Minify</title>
|
||||||
|
<link rel="stylesheet" href="/resources/css/cssall.css">
|
||||||
|
<link rel="stylesheet" href="/minify/css.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>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="mainContent">
|
||||||
|
<button class="langButton" onclick="selectCode('html')">HTML</button>
|
||||||
|
<button class="langButton" onclick="selectCode('css')">CSS</button>
|
||||||
|
<button class="langButton" onclick="selectCode('js')">JS</button>
|
||||||
|
<button id="run" class="langButton">RUN</button>
|
||||||
|
<textarea name="" spellcheck="false" class="input" placeholder="Type the code that you want to minify here" id="inputCode" cols="30" rows="10"></textarea>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
|
||||||
|
<!-- Info -->
|
||||||
|
<div>
|
||||||
|
<h4>LINKS</h4>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://samtaen.ml">Sam Taen</a></li>
|
||||||
|
<li><a href="http://jonathanbos.nl">Jonathan Bos</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4>SOCIAL</h4>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://www.youtube.com/channel/UCYuqpoMay5SezCBrA_HKVWQ?view_as=subscriber">Youtube</a></li>
|
||||||
|
<li><a href="https://twitter.com/GuusvanMeerveld">Twitter</a></li>
|
||||||
|
<li><a href="https://www.reddit.com/user/Marho_">Reddit</a></li>
|
||||||
|
<li><a href="https://instagram.com/gerda.6">Instagram</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4>TOOLS</h4>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://w3schools.com">W3schools</a></li>
|
||||||
|
<li><a href="https://stackoverflow.com/">Stack overflow</a></li>
|
||||||
|
<li><a href="https://cloudflare.com">Cloudflare</a></li>
|
||||||
|
<li><a href="https://github.com">Github</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="copyright">© 2019 Guus van Meerveld</p>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="/resources/js/navbar.json.js"></script>
|
||||||
|
<script src="/resources/js/insertNavbar.js"></script>
|
||||||
|
<script src="/minify/js.js"></script>
|
||||||
|
<script src="/resources/js/javall.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,9 @@
|
|||||||
|
var d = document.getElementById.bind(document);
|
||||||
|
var g = document.querySelector.bind(document);
|
||||||
|
|
||||||
|
function selectCode(source) {
|
||||||
|
switch (source){
|
||||||
|
case: html
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 6.2 KiB |
Reference in new issue