I will be offering free web development services for those who don't know how to design or create a site. The sites will be coded in html/css/js/jquery/php depending on the site they want of course. Here is a little basic layout I just created withon half an hour. I will provide some code aswell.
Codes.
Html
CSS. Head.css
another css Header.css

Codes.
Html
Code:
<?php
?>
<html>
<title>TheTechModz-Gaming Community</title>
<link rel="stylesheet" type="text/css" href="css/Head.css">
<link rel="stylesheet" type="text/css" href="css/Header.css">
<head></head>
<body>
<div id="Head">
<form>
<button><a href="Login.php">Login</a></button>
<button><a href="Resgier.php">Register</a></button>
<input type="text" name="search" placeholder="Search Bar, Ths site was created by Dev/TUMss">
</form>
</div>
<div id="Header">
</div>
</body>
</html>
CSS. Head.css
Code:
body {
margin:0px;
font-family: arial, helvetica, sans-serif;
font-weight: bold;
background-color: 1d1d1d;
}
#Head {
background-color: 1d1d1d;
height: 30px;
}
#Head button {
background-color: red;
border:1px solid red;
height: 30px;
width: 80px;
}
#Head a {
color: white;
text-decoration: none;
}
#Head input {
margin-left: 50px;
background-color: black;
border-radius: 10px;
border:1px solid red;
width:400px;
color: white;
}
another css Header.css
Code:
#Header {
background-color: black;
height: 175;
border-bottom: 4px solid red;
}