Sunday, June 6, 2021

UVA Web Design - Week 2

Photo by Pankaj Patel on Unsplash


Week two we began diving into the basics including how a web page is structured.  We read about several tags and elements, and discovered a basic web page template:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
  </body>
</html>

The blockquote element was new to me and it displays a block of text that is intended from both left and right margins.

<blockquote></blockquote>

A few classmates shared some HTML tutorials in this week's discussion and I thought these two were particularly helpful:

https://www.tutorialrepublic.com/html-tutorial/
https://www.tutorialspoint.com/html5/index.htm



No comments:

Post a Comment

UVA Web Design - Week 11

Photo by KOBU Agency on Unsplash OMG JavaScript and jQuery are AWESOME!! The first thing to learn is the Document Object Model (DOM).  DOM ...