Professor: Eduardo Navas (ean13@psu.edu)
Dreamweaver HTML Lecture #1 |
HTML stands for Hyper Text Mark Up Language. It was designed to interpret information on a browser. Today, HTML is combined with scripting and programming languages such as Javascript and php. While with web 2.0 the way pages are constructed has changed drastically, knowing the basics of HTML is crucial to develop complex websites. HTML consists of tags that construct pages, which are customized to follow specific designs. As the web grew, HTML was combined with CSS (Cascading Style Sheets), made to develop websites that are efficient in their maintenance and design. Following are some of the main tags you should know in HTML HTML tags to know: Tags in HTML follow a hierarchy. the tags closest to the object being modified takes precedent. The main tag of an HMTL page is: <html> Notice that the second tag has a slash. This is the second tag. Whatever is inside this tag will be included in the page. Anything outside will be ignored. All HTML pages must have inside their html tags two important tags: <body> The second used tag within the body tag is the paragraph tag: <br> To create a table use the table tag: Each table has two tags that define its columns and its rows: Columns: A table will two rows and one column will be defined as follows: <table> A table with two rows and two columns will be defined as follows: To create a link use Whatever is inside the tag is clickable. A link will look like this: To embed an image use: This is how a simple HTML page would look: <html> javascript and css will go here </head> <body> <table> <a href = "http://nytimes.com">New York Times</a> </body> One thing to remember is that you can always embed tags within tags, as long as you are aware of were the closing tags (< / >) end and begin. This will take a bit of practice, but you'll get it soon enough. -------- You can create the design of a webpage on Photoshop and Imageready. To do this, first, study various webpages and decide on a look. Then once you know how many pages your project will have (for the final assignment is five), which will also define how many links you will have, do the following: Create your first webpage in Photoshop, which should be no wider than 1000 pixels. The length does not matter. Design the links and other areas that you desire, then click on the icon at the bottom of your tool palette menu, below the color control palette; this will take you to Imageready. In Imageready, from the Tool Palette Menu choose the Slice Tool. Slice squares around the links you want to create. You will learn how to create links in the following lecture. For now you should have your page sliced properly ready to be linked.
|