Well, I still have some questions that I missed to ask in the class. The 1st one is how to remove underline from the words when we made a link by html. I have seen many web sites that don’t have underlines on links. I think it is easy to notice where links are if they have them, but sometime it is stylish without underline. Next, I want to know how to make various kinds of tables. In the class, we learned only one table, but I am sure there is more! I think tables are very useful and helpful when we organize or see things on web pages. The other thing that I want to learn is, I already wrote this before though, how to fix computers when it is broken. For example, my father is crazy about computers and there are seven desktops and laptops in my house. He studied how to make computers from scratch and also how to fix them when they have difficult problems. I don’t really want to be like my father, but I want to be able to fix my desktops and laptops when I need to.
Saturday, November 18, 2006
:::: What Do I Want to Learn More About PC? ::::
Subscribe to:
Post Comments (Atom)
1 comment:
Making links without underlines is a bit of an advanced thing. It involves CSS, which is an advanced form of coding that you can use on web pages. However, this might work: just insert the following code inside the head, after the title command, in the web page you make. Let me know if it works or not. You can change the colors to whatever you like.
<style type="text/css">
A:link {text-decoration: none; color: blue;}
A:visited {text-decoration: none; color: purple;}
A:active {text-decoration: none; color: blue;}
A:hover {text-decoration: underline; color: red;}
</style>
Post a Comment