Skip to content

moono/udacity-html-css

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

udacity-html-css

Base structures

HTML

<!DOCTYPE html>
<html>
  <head>
    Meta information goes here!!
    <meta charset=UTF-8>
    <title>This is title!</title>
  </head>
  <body>
    <!-- This is a comment -->
    Contents goes here!!
    <h1>Hello!!</h1>
  </body>
</html>

CSS

/* This is a comment */
/* Tag selector */
p {
  text-align: right;
}

/* class attribute selector */
.book-summary {
  color: blue;
}

/* id attribute selector */
#site-description {
  color: red;
}

Useful links

HTML

CSS

Other udacity courses

Text editors

  • Sublime Text3
  • Atom editors
  • Notepad++
  • Emacs
  • Vi/Vim

Browsers

  • Google Chrome
  • Mozilla Firefox

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published