You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
First-Website/contact/index.html

59 lines
2.2 KiB

<!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/styles/cssall.css">
<link rel="stylesheet" href="/resources/styles/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="/resources/styles/contact.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<title>Contact</title>
</head>
<body>
<div class="main">
<h1>Meer info?</h1>
<div class="form">
<form action="/contact/thank-you/" method="get">
<h3>Naam en achternaam<span>*</span></h3>
<input type="text" class="dataInput input" required name="name" autofocus spellcheck="false">
<h3>E-mail<span>*</span></h3>
<input type="text" class="dataInput input" required name="email" spellcheck="false">
<h3>Telefoon</h3>
<input type="text" class="dataInput input" name="phone" spellcheck="false">
<h3>Bericht<span>*</span></h3>
<textarea type="text" class="dataInput input" required name="message" spellcheck="false"></textarea><br>
<input type="submit" class="submit button">
</form>
</div>
</div>
<div class="info">
<h2>Contact informatie:</h2>
<ul>
<li>
<h4>PHONE</h4></li>
<li>+06 123 456 78</li>
</ul>
<ul>
<li>
<h4>EMAIL</h4></li>
<li>616258@live.pantarijn.nl</li>
</ul>
<ul>
<li>
<h4>LOCATION</h4></li>
<li>Gelderland, Netherlands</li>
</ul>
</div>
<script src="/resources/json/navbar.json.js"></script>
<script src="/resources/scripts/insertNavbar.js"></script>
<script src="/resources/scripts/javall.js"></script>
</body>
</html>