30536a – Learning Activity 05
Research
Visit a website and view the source code (right click View
Source). Take note of the different HTML tags. List five tags and find out what
they do.
This is the classic template HTML for my Sedgie Art
blog.
This is the link that comes up when I right click View
Source: view-source:https://draft.blogger.com/view-classic-template.g?blogID=52410928858457616.
Being new to web design and code, I did a Google search
and located this site on html (http://www.simplehtmlguide.com/)
and the meanings of the different html tags in the above code.
<html>
<head>
<title>this is the title</title>
</head>
<body>
this is everything that goes in the document!
</body>
</html>
In other words, he is saying that the tags have the
following meanings:
- <Html> – html
- <Head> - header
- <Title> - title of article
- <Body> - the main text
There are also tags for paragraphs (<p> and
<p/>), headings (<h>), links (<a href=home.htm> name of link
</a>;), images (<img src="photo.jpg">).
Below is a screenshot of
me using the HTML Live Demo (and how the results should look when complete).
Comments
Post a Comment
Thank you for your feedback. The moderator will soon moderate your comments and say 'yay' or 'nay'. Any posts that aren't relevant to the topic of this blog will be rejected immediately.