9
c12012Sep214.notebook 1 September 02, 2014

c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

1

September 02, 2014

Page 2: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

2

September 02, 2014

The open tag is followed by closing tag. So the open is <title> and the close is </title> with the slash.Note that <br> does not have an end tag.

The p tag is for paragraphsand leaves blank lines whilethe div tag does include theextra blank lines.

The br tag is like Enter onyour keyboard. It breaks tothe next line.

Page 3: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

3

September 02, 2014

To see the source code, I right clicked on the page and then clicked on view source to see the code that made the page. Other browsers are similar ­ look for ways to view the source.

I want to take the source codeand be able to modify it so I copiedit and pasted it into notepad. I then saved it as intro.html.

I would bring a flashdrive to class tosave the pages youare creating. If you do not have aflash drive, save onthe T drive so it won't be lost.

Here is the name, and now I mustchange the Save as type to All Files.

Page 4: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

4

September 02, 2014

It is hidden but I put the <br>tag after introduction.

Page 5: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

5

September 02, 2014

The <ol> tag is used to make an ordered list meaning the numbers 1,2,3 etc appears in front of the list items. The <ul> tag is used to make an unordered list with the bullet in front.

Page 6: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

6

September 02, 2014

If you put multiple spaces between letters they willbe ignored and you will only have one space.The &nbsp; can be used to add spaces. For everyspace you want, you write these 6 characters.

Page 7: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

7

September 02, 2014

Links to pages in the same directory as the original page.The anotherpage.html exists but newpage.html does not exist.

Page 8: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

8

September 02, 2014

A good reference.A good reference.

Page 9: c12012Sep214.notebook September 02, 2014cisweb.bristolcc.edu/.../CIS120/c12012Sep214.pdf · 2014. 9. 2. · c12012Sep214.notebook 4 September 02, 2014 It is hidden but I put the

c12012Sep214.notebook

9

September 02, 2014

Someone asked about putting comments in your code. See below...Someone asked about comments. See below...