How do I make a website using html that has all these things?
I so far got the title part down because of some turtorials i found on youtube but other then that Im lost anyone willing to help? Title . Colored background (not the default). A "mailto" link to receive mail from people. A working link to some other site. Header text of at two different sizes (h1, h2, etc.) (50 points each) Bold face text and italicized text. (50 points each) Centered text A horizontal line across the page, otherwise known as a “Horizontal Rule.” Two lists: one ordered (using numbers) and one unordered (a bullet point list). (50 points for each) A picture of yourself, family pet, or other photo unique to you Im using notepad
Public Comments
- <html> <head> <title> TITLE </title> <body> <a href='mailto:email@address.com'>EMAIL ME</a> <a href='http://google.com'>GOOGLE</a> <h1>HEADER</h1> <b>BOLD</b> <i>ITALICS</i> <center> CENTERED </center> <img src='http://site.com/picture.jpeg' /> </body> </html>
- <html> <head> <title>ENTER YOUR TITLE HERE</title> </head> <body bgcolor="#999999"> <a href="mailto:YOUREMAIL@DOMAIN.COM">email me</a> <h1>header1</h1> <h2>header2</h2> <center><b><em>bold italicized and centered text</em></b></center> <hr><!--Horizontal Rule--> <ol> <li>ncdjsjnds</li> <li>dsnajs</li> </ol> <ul> <li>bduwkcd</li> <li>bhdsabcd</li> </ul> <img src="linkToYourPic.jpg"> </body> </html>
- <html> <head> <title>My Homework</title> <style type="text/css"> body { color:White; background-color:Black; } h1 { color:Yellow; font-size:20pt; } h2 { color:Green; font-size:30pt; } a { color:Red; } a:active { color:Red; } a:visited { color:Red; } </style> </head> <body> <a name="_top"></a> <center> <b><i>Welcome to...</i></b> <h1>MY HOMEPAGE</h1> </center> <hr /> <h2>My Favorites</h2> <ol> <li><a href="http://answers.yahoo.com" target="_blank">Yahoo Answers!</a></li> <li><a href="http://map.google.com" target="_blank">Google Map</a></li> <li><a href="http://www.w3schools.com" target="_blank">W3Schools</a></li> </ol> <h2>My Other Links</h2> <ul> <li><a href="http://validator.w3.org" target="_blank">W3Validator</a> - Check the markup of web documents</li> <li><a href="http://codepad.org" target="_blank">CodePad</a> - Online compiler/interpreter and collaboration tool</li> <li><a href="http://tinyurl.com" target="_blank">TinyURL</a> - Making long urls usable!</li> </ul> <img src="http://i228.photobucket.com/ albums/ee78/zrswebdesign/friend4.gif"> <br/> <a href="#_top">Go Top</a> <hr /> <a href="mailto:PUTYOUREMAILHERE">Click here</a> to e-mail me. </body> </html>
Powered by Yahoo! Answers