![]() |
|
Basic Html and CSS page - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: Basic Html and CSS page (/Thread-Basic-Html-and-CSS-page) |
Basic Html and CSS page - Kendrick Lamar - 07-14-2015 Basic Html Page can use it for what ever reason i used it as a 404 page cause why not can view here www.creativeagent.us/404.html Code: <title> 404 - Bitches Get Shot</title>
<LINK REL=StyleSheet HREF="404.css" TYPE="text/css" MEDIA=screen>
<h1>404 - Bitches Get Shot</h1>CSS Code: @import url(http://fonts.googleapis.com/css?family=Advent+Pro:100);
html {
background: url(https://38.media.tumblr.com/9badf53881b8a4abd9a2c71acb848387/tumblr_n31wx4HPzc1qd8w33o1_400.gif) no-repeat center center fixed;
background-size: cover;
}
h1 {
font-family: 'Advent Pro', sans-serif;
font-size: 3em;
margin: 1em .5em;
color: rgba(0, 0, 0, 1);
}
body {
height: 100%;
} |