Main Site Route Folder – stores all information locally (Index.html for homepage, same goes to about, contact, etc). Moves to server eventually. svsu.edu/~ckquirin
Folders within main site route folder:
CSS
IMAGES
DOWNLOADSSite Root Folder:
The Site Root Folder is key to your projects success. Computers are very sensitive to the placement of files. Every time you link a file to an HTML page, code is written identifying the location of that file on your web page. If the file is later moved, the computer will not find the linked file and some of your web page will not function.
For these reasons, please commit to keeping the Main Site Root Folder in one place and never moving it. It can be saved to any form of storage, as long as Dreamweaver can easily see the folder when it opens. I suggest a flash drive. It is also very wise practice to backup this folder on another form of storage in case the original is lost. (You do not want to build your site over from scratch!)
Next, if you are using the SVSU Lab Computers every time you turn on Dreamweaver, you will have to identify where the Site Root Folder is. I have named the Site Root Folder we are using for the Work Site, the Main Site Root Folder.
To explain to Dreamweaver where the folder is, follow these steps…
1) Go to the drag down menu, Sites
2) Choose Manage Sites…3) In the lower right corner, click on New Site
4) Give the Site a Name (I suggest MSRF, for Main Site Root Folder)
5) Click on the small folder icon, across from the words “Local Site Folder”
6) Then click on Save
Again, if you will be using the SVSU Lab Computers, this will have to be done at the start of every class. If you are using your own computer, it will remember these settings and you will only have to enter this once.
As stated before, please do not move the placement of the Main Site Root Folder. The same applies to any items that should be stored in your Main Site Root Folder. For example, you cannot keep your index.html (home page) on one flash drive, outside of your Main Site Root Folder. That is because the computer will have a very difficult time locating them outside of the Main Site Root Folder.
Also, even if Dreamweaver could find a rouge file outside of the Main Site Root Folder, it would not be able to share the file with the rest of the world when the website is published. If however, you keep the proper files in their correct location and structure, you will have an easy time publishing your site for the world to see.
HTML Sandwich – the order of content
HTML is linear, the code is read by the computer from top to bottom.
HTML generally is a series of tags (tags work in pairs, beginning and end)
HTML sandwich content:
doctype
html
Metadata: <head> </head> (info for browser)
<body> </body>
</html>
HTML Sandwich:
- HTML is linear
- It goes from top to bottom
- It includes four sections
1. doctype
2. html
3. head
4. body
The HTML Sandwich Structure - Flag in top of sandwich; begins with Doctype HTML - Top bun of sandwich; begins the <html> - Head portion / Meta data <head> </head> This is known as simply metadata. - Fillings of sandwich; Body, which is what is visible on the page <body> </body> - Bottom bun of sandwich; ends with <html>HTML – content and structure
Content = Images, text
Structure = body, header, main, footer, aside, article
div (division) eventually became tags
class = can be repeatedly used - .class
id = more important, only used once per page - #id
Most “boxes” are invisible.
HTML = hypertext markup language
Tags
It is constructed via a set of tags. Tags are used to delimit the start and end of elements in the markup. These can reference structure, or elements such as type.
<header1> HEADER </header1>
<header2> HEADER2 </header2>
<body> BODY </body>
<footer> FOOTER </footer>
Some HTML History
- 1989: Tim Burners-Lee invented the World Wide Web to share text information
- He originally called links anchors, which is why we use <a> to represent links
- href = Hyper Reference
- Media screens allow sites to transform for mobile
- States = Hover/Click
- Divs = Divisions/Boxes <div>
Creating Links
- highlight word or image
- click on drag-down menu Insert and choose hyperlink
- confirm the correct text or image is chosen in first line
- for an internal link (your own site) - in second line click on the folder icon and pick another html page
- for an external link — in the second line paste the complete URL of the site or page you want the link to lead to
- if you want the link to open a new page (rather than replace the current page) choose _blank in line three Target
- to help with accessibility fill in the Title to explain the link
- or you could add type the code directly. An example includes:
Index Page
We commonly refer to this as the home page, but to function properly it should be coded as index.html. Browsers automatically recognize that as the home page. Never save your home page as home.html. You will have to use special code for a browser to recognize it as the home page and it might not work with all browsers.
CSS – Style
Color, dimensions, location, etc.
CSS = cascading style sheets
Applies to multiple pages within site, separate CSS can be made for each page but not necessary.
3 ways to deal with CSS:
1. (best) make a separate CSS sheet, then link with html
2. Put CSS inside the head section of html (metadata)
3. Apply CSS in line (most inefficient)
CSS Coding for Structure (FLOAT)
Tags normally used for structure
<header>
<nav>
<main>
<article>
<section>
<footer>
<aside>
However, any name can be used for a class or ID <div> (division) tag. When using divs do make sure you add HTML comments at the end div. Otherwise it is very easy to forget which end div goes to what element. </div>
Common CSS attributes / properties…
Float:Almost every structural element on your web page will have a float attribute. If you forget to add this, the element will probably not end up on the screen where you intend it to be. I again strongly suggest you always use float: left. When you do so, all elements respond to one another and it's easier to make corrections.
width: Use percentages (%) for widths. Always think about 100% being the magic number. If a space is shared by several elements inside a main element, figure out how to make the grand total of the elements equal 100%. Do remember that padding and margins contribute to the overall width. Some experimenting and math is required.Height:
Normally "auto" is the best setting here (meaning you don't have to use this property at all!) If you don't include it (thus, setting it to default height: auto) then the element will expand or contract with the content inside the element. More text/pictures equals a bigger box, less content equals a smaller box. On the rare occasion when you want to set a strict height, do so in pixels (ex. height: 100px). This elements height will probably have to be adjusted in media screens to work properly on different devices.
Background:You can set an image or a color as background. You can do this more specifically with…
background-color: aliceblue; (or any other color).
or
background-image: url("../images/Review.jpg"); (of course you can set the background image to be any form of properly formatted pixel image)Padding: (Remember: Padding pushes in)
Margin: (Remember: Margin marches out)
Border: (this applies to all four sides)
border-top: 5px solid red;
border-left: 24px solid blue;
border-right: 10px solid blue;
border-bottom: 10px solid blue;
Max-width: There are times this is very useful. For example you don't want your elements holding text to become so wide that you have a line-length error (remember the 72 character rule?). Although it is more difficult to control we can still experiment, setting our max-width and confirming in a browser that the lines aren't too long.
Another possible problem is that others are viewing your website with the text displayed larger or smaller than you are setting it to. So again, we can't control all the variables, but we can make some general perammiters.
max-height:
display:
pseudo-classes:
Uncommon CSS
Flex: Can be used to make columns of equal height, but often interferes with other standard CSS attributes.
Rounded Corners: (not approved by World Wide Web Consortium yet, but approved by browsers. So we have to use different code for the browsers)
Rounded Corners - Approach 1: All corners the same border-radius: 10px; /* future proofing */ -moz-border-radius: 10px; -webkit-border-radius: 10px;
Rounded Corners - Approach 2: Corners different border-radius: 10px 20px 30px 0; /* future proofing */ -moz-border-radius: 10px 20px 30px 0; -webkit-border-radius: 10px 20px 30px 0;
opacity:
Rare position:
z-index:
outline: