- Wed Jun 08, 2016 9:05 pm
#48826
You seem to lack a body closing tag and html tags if you wish to be correct with coding. Let me see if I can take the rocket out of the science with framework example one should use on every web page these tags according to standard should be included in EVERY web page ;)
I will warn you I have done some basic html work nothing extreme so I while I am not the greatest coder in the world I know some basics and hopefully my assumption is correct that you are stumbling at the basics of html and syntax and I have understood your problem.
You may also use the color code for light grey ;) you can get a particular shade of light grey that you may prefer this way. Just look up grey html color codes I prefer to stick to color codes myself this way I know the information is right.
This is the page I use for color codes rather than color names:
http://www.computerhope.com/htmcolor.htmAnyways from now on use this framework to stay within the standards of an html page you can just copy and paste this and add in your code between the lines! Obviously you will have to append wprint.
The Basic HTML Framework
Learn the basic tag framework for HTML pages.
An HTML document begins with 4 sets of nested container tags.
Code: Select all<HTML>
<HEAD>
<TITLE> Page Title </TITLE>
</HEAD>
<BODY>
Text of document.
</BODY>
</HTML>
A little info about each container.
<HTML>
The <HTML> </HTML> container surrounds, or contains, the entire HTML document, which is displayed at the top of the Web browser.
<HEAD>
The <HEAD> </HEAD> container contains the document's header information, which specifies how an HTML document is to be interpreted.
<TITLE>
The <TITLE> </TITLE> container lives within the HEAD container and contains the title of the document.
<BODY>
The <BODY> </BODY> container contains the main content of the HTML document.
I hope this helps a bit,
-forlotto