-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
983375a
commit 1b026d7
Showing
2 changed files
with
118 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, user-scalable=no"> | ||
<title>Contact – Tumasik.be</title> | ||
<meta name="author" content="Christophe Vanhoutte"> | ||
<style> | ||
body{ | ||
padding:1em; | ||
font-family: 'Roboto', sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
body,#main{ | ||
background-color: #e0e0e0; | ||
color:#404040; | ||
} | ||
h1{ | ||
text-align:center; | ||
} | ||
h1,h2{ | ||
cursor: default; | ||
} | ||
p.center{ | ||
text-align:center; | ||
} | ||
.nostyle{ | ||
text-decoration:none; | ||
color:#404040; | ||
} | ||
abbr[title]{ | ||
border-bottom:1px dotted; | ||
} | ||
abbr[title]:hover{ | ||
cursor:help; | ||
} | ||
button { | ||
-webkit-border-radius: 4px; | ||
-moz-border-radius: 4px; | ||
border-radius: 4px; | ||
font-family: Arial; | ||
color: #ffffff; | ||
font-size: 17px; | ||
padding: .5em; | ||
background: #404040; | ||
text-decoration: none; | ||
border: 0; | ||
transition: all 0.5s ease; | ||
} | ||
button:hover { | ||
background: #808080; | ||
text-decoration: none; | ||
cursor:pointer; | ||
} | ||
hr{ | ||
width:50%; | ||
float:none; | ||
margin: 2em auto; | ||
} | ||
.alert { | ||
color: #31708f; | ||
background-color: #d9edf7; | ||
border-color: #bce8f1; | ||
margin: 0 10%; | ||
padding: 15px; | ||
margin-bottom: 20px; | ||
border: 1px solid transparent; | ||
border-radius: 4px; | ||
text-align: center; | ||
} | ||
a, a:visited{ | ||
color:#3C3C3C; | ||
text-shadow: 0 0 0 transparent,0px -1px 0px #FFF; | ||
margin: .2em; | ||
text-decoration: none; | ||
border-bottom: 1px #989898 solid; | ||
transition: all ease .2s; | ||
} | ||
a:hover{ | ||
border-bottom: 1px #CC0000 solid; | ||
} | ||
p { | ||
line-height: 1.5; | ||
} | ||
::selection { | ||
color: #fff; | ||
background: #404040; | ||
} | ||
</style> | ||
<link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet'> | ||
<!--[if lt IE 9]> | ||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
</head> | ||
|
||
<body itemscope itemtype="https://schema.org/WebPage"> | ||
<a href="https://tumasik.be/" title="Tumasik.be" alt="Tumasik.be" rel="home" class="nostyle"><button>← Tumasik.be</button></a> | ||
<div id="main" itemprop="mainContentOfPage"> | ||
<h1>Contact</h1> | ||
<p> | ||
<form id="fs-frm" name="simple-contact-form" accept-charset="utf-8" action="https://formspree.io/f/mnqevdlq" method="post"> | ||
<fieldset id="fs-frm-inputs"> | ||
<label for="full-name">Full Name</label> | ||
<input type="text" name="name" id="full-name" placeholder="" required=""> | ||
<label for="email-address">Email Address</label> | ||
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required=""> | ||
<label for="message">Message</label> | ||
<textarea rows="5" name="message" id="message" placeholder="Uw bericht hier" required=""></textarea> | ||
<input type="hidden" name="_subject" id="email-subject" value="Tumasik.be - Contact"> | ||
</fieldset> | ||
<input type="submit" value="Submit"> | ||
</form> | ||
</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters