Search (advanced search) | ||||
Use this Search form before posting, asking or make a new thread.
|
03-28-2014, 11:32 PM
Post: #1
|
|||
|
|||
Html and Css File
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
Keep Smiling!
|
|||
03-29-2014, 01:11 AM
Post: #2
|
|||
|
|||
RE:
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. |
|||