Question:
Completely new to this, please help! (Building a web page)?
Strawberry Sunflower
2012-03-22 06:33:25 UTC
Below is my file as it appears in notepad. However, when opening it in explorer, the only thing that seems to have worked is the title "HTML Makes the Web Go Round" which is showing on the tab. Everything else is just a blank screen. What have I done wrong? Please don't laugh at me. Like I say I'm completely new.


"http://www.w3.org/TR/xhtm11/DTD/xhtm11-transitional.dtd">




HTML Makes the Web Go Round


style="color: white;
background-color; teal;
font-size: 1.2;
font-family: sans-serif">

Hello World!



We sincerely believe that basic HTML knowledge is essential to designing, building, and maintaining readable and workable Web pages. Our goal in this book is to explain what HTML, XHTML, and CSS are and how they work, and then to show you exactly how to use them to best advantage.



Along the way, we will examine the principles and best practices that govern Web page design and construction, and help you understand how to make your content accessible to the broadest possible audience.



By the time you work your way through this book's contents, you should feel comfortable with creating and managing your own Web site. You should also understand what it takes to identify your audience, communicate with that audience, and keep your content fresh and interesting to keep them coming back for more.



Sincerely,

Jeff Noble and Ed Tittel, your humble authors





Four answers:
UMM
2012-03-23 12:52:46 UTC
Ok just to let you know I myself finished a set of html tutorials from thenewBoston and he helped me learn it very easily... basically your problem is you put you style in the body parameters......but you should use CSS and put it under the head as style tags...again all learned from thenewBoston tutorials...and another thing, html ignores your white space. I don't know if you want your sincerely, Jeff.. to be on separate line but if you do you will want to add two
tags or break. Also you have some careless errors but so do I so its ok...for example when you put the background-color; teal; it has to be background-color : not ;...

Here is a rewritten code....but may I ask why you are making a webpage for html and css?




"http://www.w3.org/TR/xhtm11/DTD/xhtm1…









HTML Makes the Web Go Round











Hello World!





We sincerely believe that basic HTML knowledge is essential to designing, building, and maintaining readable and workable Web pages. Our goal in this book is to explain what HTML, XHTML, and CSS are and how they work, and then to show you exactly how to use them to best advantage.





Along the way, we will examine the principles and best practices that govern Web page design and construction, and help you understand how to make your content accessible to the broadest possible audience.





By the time you work your way through this book's contents, you should feel comfortable with creating and managing your own Web site. You should also understand what it takes to identify your audience, communicate with that audience, and keep your content fresh and interesting to keep them coming back for more.





Sincerely,







Jeff Noble and Ed Tittel, your humble authors

2012-03-22 06:41:45 UTC
The error here is a ; where a : should be after background-color. Specifically change




style="color: white;

background-color; teal;

font-size: 1.2;

font-family: sans-serif">



to




style="color: white;

background-color: teal;

font-size: 1.2;

font-family: sans-serif">
shrubbmann
2012-03-22 07:01:45 UTC
Chris has the correct answer, also, you could simplify the tag because this is only a "Hello World" webpage. (To keep your font and style this is correct)







But what you have is fine, just change the ";" (semicolon after background-color) to a ":" (colon).



Then it works fine.
2016-11-10 07:51:07 UTC
particularly it could desire to be by ability of layout that the size are decrease than 1024x768 as well-known. yet you are able to administration that employing CSS. you are able to change to a "Liquid layout" that makes use of a % of the demonstrate screen width for each column. the reason in the back of the small width is for the reason which you do no longer understand what demonstrate screen format your clientele could have. i exploit a 17inch demonstrate screen at 1400 pixels huge, yet my spouse makes use of a 10inch netbook at approximately 800px. a competent cyber web developer prepares his sites for the two.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...