• Qucik question on HTML
    10 replies, posted
Hey I am in a Web 1 class and just started to learn some coding. We have to make a page in notepad that makes this website. And I can get everything exept the 2. Please check out my code at the bottom and correct me if my coding is wrong. FINDING YOUR WAY IN THE WILDERNESS 1.Seek expert advice about the areaa Get the best maps. Try looking at Google Maps© . On the map select landmarks mountains lakes Spend more than 99¢ and get a good compass to check slope of land check direction of flowing streams 2.If it gets below 32°, stay close to: roads trails and waterways <HTML><P> <HEAD> <TITLE>Finding Your Way in the Wilderness</TITLE> </HEAD> <BODY> <H2 ALIGN="CENTER">Finding Your Way in the Wilderness</H2> <OL> <LI>Seek expert advice about the area <UL> <LI>Get the best maps. Try looking at Google Maps&copy;. On the map select <UL> <LI>landmarks <LI>mountains <LI>lakes </UL> <LI>Spend more than 99&#162 and get a good compass to <UL> <LI>check slope of land <LI>check direction of flowing streams </UL> <LI>If it gets below 32&#176, stay close to <UL> <LI>Roads <UL> <LI>Trails <LI>waterways </UL> </OL> </BODY></HTML>
it should look like this <!DOCTYPE html> <html> <body> <head> <title>title here</title> </head> <h1 align:center;>heading here</h1> then the rest is fine, then finish with </body> </html>
You know you're using a bad IDE or you're learning something wrong if you have caps elements.
good , all code right
[QUOTE=jung3o;36848129]You know you're using a bad IDE or you're learning something wrong if you have caps elements.[/QUOTE] not necessarily. some people just do that cause it helps them for whatever reason. [editline]20th July 2012[/editline] also, it's because you forgot a </ul>. it still thinks you wanna be in that same line of lists. here is the fix :) [code] <HTML><P> <HEAD> <TITLE>Finding Your Way in the Wilderness</TITLE> </HEAD> <BODY> <H2 ALIGN="CENTER">Finding Your Way in the Wilderness</H2> <OL> <LI>Seek expert advice about the area <UL> <LI>Get the best maps. Try looking at Google Maps&copy;. On the map select <UL> <LI>landmarks <LI>mountains <LI>lakes </UL> <LI>Spend more than 99&#162 and get a good compass to <UL> <LI>check slope of land <LI>check direction of flowing streams </UL> </ul> <LI>If it gets below 32&#176, stay close to <UL> <LI>Roads </UL> <UL> <LI>Trails </UL> <UL> <LI>waterways </UL> </BODY></HTML> [/code]
[QUOTE=jung3o;36848129]You know you're using a bad IDE or you're learning something wrong if you have caps elements.[/QUOTE] or when it inserts a <p> tag directly after <html>, or uses the "align" attribute, or doesn't add a doctype.
I'll set yall a basic html format because you guys have no idea what you're doing [html]<!doctype html> <html> <head> </head> <body> </body> </html> [/html] Please, it's nothing. Just call me HTML MASTER
[QUOTE=jung3o;36874563]I'll set yall a basic html format because you guys have no idea what you're doing [html]<!doctype html> <html> <head> </head> <body> </body> </html> [/html] Please, it's nothing. Just call me HTML MASTER[/QUOTE] [URL="http://www.whatwg.org/specs/web-apps/current-work/#the-doctype"]Doctype should be capitalized.[/URL]
[QUOTE=Jelly;36875039][URL="http://www.whatwg.org/specs/web-apps/current-work/#the-doctype"]Doctype should be capitalized.[/URL][/QUOTE] Did you even read it? [quote]A DOCTYPE must consist of the following components, in this order: 1. A string that is an ASCII case-insensitive match for the string "<!DOCTYPE". [...] Note: In other words, <!DOCTYPE html>, case-insensitively. [/quote]
[QUOTE=TerabyteS_;36875622]Did you even read it?[/QUOTE] My bad, I misread.
Your teacher IS AWFUL (or you are very bad at listening)
Sorry, you need to Log In to post a reply to this thread.