Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanhouttethomas authored Feb 26, 2024
1 parent 983375a commit 1b026d7
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 2 deletions.
116 changes: 116 additions & 0 deletions contact.html
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>&#8592; 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>
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
h2{
text-align:center;
cursor: default;
font-color:#000;
font-color:#fff;
font-style:italic;
}
body{
Expand Down Expand Up @@ -118,7 +118,7 @@ <h2>Management & Consultancy Services</h2>
<div id="push"></div>
</div>
<footer itemscope itemtype="http://schema.org/WPFooter">
<a href="/about" title="About">About</a> | <a href="/maildisclaimer" title="E-mail disclaimer">Maildisclaimer</a> | <a href="/t&c" title="Terms and conditions">Algemene voorwaarden</a> | <a href="/privacy" title="Privacy Policy and Cookies">Privacy & Cookies</a> <span id="tumasikBrand">&copy; <span itemprop="copyrightYear">2024</span> <a itemprop="url" href="https://tumasik.be" title="Tumasik"><span itemprop="name">Tumasik</span></a></span>
<a href="/about" title="About">About</a> | <a href="/contact" title="About">Contact</a> |<a href="/maildisclaimer" title="E-mail disclaimer">Maildisclaimer</a> | <a href="/t&c" title="Terms and conditions">Algemene voorwaarden</a> | <a href="/privacy" title="Privacy Policy and Cookies">Privacy & Cookies</a> <span id="tumasikBrand">&copy; <span itemprop="copyrightYear">2024</span> <a itemprop="url" href="https://tumasik.be" title="Tumasik"><span itemprop="name">Tumasik</span></a></span>
</footer>
</body>
</html>

0 comments on commit 1b026d7

Please sign in to comment.