Mat Banville and Chan Tran
-
1) We are using external by linking to the other style sheet and the player sheet.
-
2) We are using this method instead of the others so that When we make changes to the smaller base file it will update all of the other files as well.
-
3) The three attributes that are used to specify a file format, relation, and location are rel, type, and href.
-
4) The comma appears to allow multiple Names for a single method call.
-
5)The Title of the web page did not change top read and neither did links away from the page.
-
6)The article was shifted towards the left. There was less background border on the left hand side. Auto keeps it centered whereas without it the page is just fixed 20 pixels from the left hand border.
-
7) Info is the id name because of the # sign indicator. Stats is the class because of the period indicator. And Section is the html element.
-
8) . represents class # represents id name
-
9) Writing two or more elements with one declaration allows it to be more readable as well as be more efficient since the elements are being run almost simultaneously, making it execute faster rather than executing the same declarations over and over again.
-
10)The hyperlinks are affected by hover. Hover refers to when mouse is on the hyperlinks "hovering" over their location.
-
11)The visual behavior is slightly annoying because it is too large. If it is at 2 em then it is good and signifies that you are on a hyperlink without being too obtrusive to the viewer.
-
12) Em is used to scale the font-size of document text. 3em would be 36pt given that the document is 12pt.
-
13) To make h1 into 6pt font, we would have change it to .5em.
-
14)We are specifying that the text will be in italics. And that this is only applicable if the h2 is inside a header.
-
15)It is important to specify because sometimes you can have multiple tags and if you want a specific one to have a different style then you need to specifically state that one in order to change it.
-
16)hgroup can be used top specify a specific header group. You could also have your own tag and describe the group in more detail
-
17)The property that is used to make the text italic is font-style. They chose to use the word font for italics because text can incorporate a wide variety of options. Where as font is more specific.
-
18)You used the comma to allow both of the block elements to call that same line of code.
-
19) margin: 0px 35px 15px 0px; float: left;
-
20) border-width: 4px 1px 1px 4px;
-
21) The border of the glossary is shrunk so that it does not encompass the overflowed cells.
-
22) By taking out the ul, the problem would be that the program does not know how to list the items since it was not specified.
-
23) The other boundary of the table changes the radius of the corners for the border. The higher the value, the larger the radius of the corner borders.
-
24) This code is used to create a rounded 3D button in the HTML document.
-
25) It seems a little excessive because there is a lot of code for such a simple task as creating a 3D button that pops out. It is necessary in order to make it visually appealing.