The Hard part, Linking and Navigation.
This week its all about making webpages link. Yes from now on, i'll be able to make more than one web page and successfully navigate from one to the next. Like every thing in html, at first glance it appears complex but as you get into it you realize its not that much. Linking is essential to web design as it
allows for navigation between and throughout web pages. A link is created with the use of the <a> element, and like most elements once there is an open tag there should also be a close; </a>. Within this element there is also the linking attribute "href" whose value is the page that you want to link to. So for example a link should look like this.
<a href="http://www.google.com/">Google</a>.
It is also important to note that a link can be a word, phrase or an image.
This week its all about making webpages link. Yes from now on, i'll be able to make more than one web page and successfully navigate from one to the next. Like every thing in html, at first glance it appears complex but as you get into it you realize its not that much. Linking is essential to web design as it
allows for navigation between and throughout web pages. A link is created with the use of the <a> element, and like most elements once there is an open tag there should also be a close; </a>. Within this element there is also the linking attribute "href" whose value is the page that you want to link to. So for example a link should look like this.
<a href="http://www.google.com/">Google</a>.
It is also important to note that a link can be a word, phrase or an image.
No comments:
Post a Comment