Quiz
- What are some ways to determine a target audience? List three.
- What is the purpose of the functional requirements document?
Starting a website
Defining an html document setup.
- The
<!DOCTYPE html>
declaration defines this document to be HTML5 - The
<html>
element is the root element of an HTML page - The
<head>
element contains meta information about the document - The
<title>
element specifies a title for the document - The
<body>
element contains the visible page content
Containers
Meet the <div></div>
Can be targeted, identified with an “ID” or a “Class”
Building blocks of your pages
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”utf-8″ />
<title>Containers, Divs, Oh My!</title>
<meta “test site for class”>
</head>
<body>
</body>
</html>