Skip to content

Instantly share code, notes, and snippets.

@jervalles
Created September 4, 2019 20:18
Show Gist options
  • Save jervalles/22a3e5e0f432aab43bf6ec170b5dcc5d to your computer and use it in GitHub Desktop.
Save jervalles/22a3e5e0f432aab43bf6ec170b5dcc5d to your computer and use it in GitHub Desktop.
FindThePrecious.com
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li>FindThePrecious.com</li>
<li class="fellowsli">Fellows</li>
<li>Contact us</li>
</ul>
</nav>
<section>
<div class="carousel"></div>
</section>
<section class="fellowstext">
<h2>Fellows wanted dead</h2><h3>&nbsp;(or alive if you want to eat them later)</h3>
</section>
<section class="arti">
<article></article>
<article></article>
<article></article>
</section>
<h2 class="formh2">Contact us</h2>
<form>
<input type="text" placeholder="@">
<input type="text" placeholder="&#8962;">
<label for="subject"></label>
<select id="subject" name="user_subject">
<option value="I have seen one of them">I have seen one of them</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<textarea placeholder="Your message"></textarea>
</form>
</body>
</html>
nav {
background-color: #5d5d5d;
color: #bbbbbb;
height: 35px;
}
ul li {
display: inline-block;
justify-content: center;
padding-right: 15px;
padding-left: 15px;
}
ul li:first-child {
font-size: 20px;
}
.fellowsli {
padding-top: 8px;
padding-bottom: 9px;
background-color: #e0e0e0;
font-weight: bold;
border: solid 0.0050em #969696;
}
ul {
padding-left: 10px;
}
.carousel {
height: 250px;
background-color: #f1efef;
}
.fellowstext {
justify-content: center;
display: flex;
font-family: Arial;
font-size: 15px;
padding-top: 18px;
padding-bottom: 18px;
color: #757575;
}
h3 {
padding-top: 5px;
}
.arti {
display: flex;
justify-content: center;
padding-bottom: 130px;
border-bottom: solid 0.1em #969696;
}
article {
background-color: #f1efef;
height: 280px;
width: 60%;
margin-right: 5px;
margin-left: 5px;
}
.formh2 {
font-family: Arial;
font-size: 20px;
color: #757575;
padding-bottom: 20px;
}
form {
justify-content: center;
width: 85%;
padding-left: 70px;
}
form input {
width: 100%;
margin-bottom: 15px;
border: solid 0.18em #969696;
}
#subject {
width: 100%;
margin-bottom: 15px;
}
form textarea {
width: 100%;
padding-bottom: 70px;
border: solid 0.18em #969696;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment