Best Blackhat Forum

Full Version: Html and Css File
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone have a basic code for a website, trying to code my own in Notepad++ but cant get the CSS file right.

Just learning website coding so any complete website codes will be gratefully accepted, at least then i can see how the html and CSS work together.


Thanks
paste into your html file:eg.index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>Welcome</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Anything here-on the left
or
<h1>Centered</h1>
<br>
</body>
</html>

and paste into your css file and name it eg. style.css
body{background-color:#0066cc}
h1{color:#fff;
text-align:center;}

get some ebooks and videos on html/ css that's the only way to learn.
Reference URL's