2012-04-15 11:21:07Morris

[HTML] HTML Fundamentals

Hyperlinks

<html>

<head>
    <title>HTML - One O' One</title>
</head>

<body>
    <a href="http://www.codecademy.com" title="This will send you to Codecademy!">Go to Codecademy.com</a>
    <p></p>
    <a href="http://mypaper.pchome.com.tw/zerojudge" title="New Page">
        My Blog</a>
</body>

</html>

Images

<html>

<head>
    <title>HTML - One O' One</title>
</head>

<body>
    <img src="http://www.mt-soft.com.ar/wordpress/wp-content/uploads/2007/07/html-logo.jpg"/>
</body>

</html>

Clickable Images

<html>

<head>
    <title>HTML One O' One - Bonus Section</title>
</head>

<body>
    <a href="http://cnn.com"><img src="http://cdn.codecademy.com/assets/courses/cnn.gif" height="82" width="119" /></a>
   
</body>

</html>

What Are My Next Steps?

<html>
    <head>
        <title>Morris's Blog</title>
    </head>
   
    <body>
        <p>Test one</p>
        <a href="http://mypaper.pchome.com.tw/zerojudge">My Link</a>
        <p></p>
        <img src="http://photo.pchome.com.tw/s08/m/o/morris821028/book2/p132045954319.jpg"/>
    </body>
</html>