INFO 253A: Front End Web Architecture
Kay Ashaolu
This college is [Berkeley](http://berkeley.edu)
# Main Header
Important stuff in this paragraph...
## This is a "level 2" header
Info supporting main section, specific to this subsection...
*important stuff*
**really important stuff**
Annotation to existing text
<strong>hello</strong>
<em>world</em>
<strong><em>hello</em></strong>
<blink>BLINK!</blink>
<font> <center> <i>
Why?
<span> <strong> <em>
Client can style these however it chooses (with help from CSS)?
<h1>Welcome to my webpage</h1>
<p>Hello World!</p>
<h1>Welcome to my webpage</h1>
Hello World! Here's where I work:
<a href="http://pinterest.com">Pinterest</a>
<h1>Welcome to my list</h1>
<ul>
<li>List item one</li>
<li>List item two</li>
<li>list item three</li>
</ul>
name="value"
<div>
<h1>Welcome to my webpage</h1>
<span>Hello World! Here's where I work:</span>
<a href="http://pinterest.com">Pinterest</a>
</div>
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Class</th>
</tr>
<tr>
<td>Kay</td>
<td>Ashaolu</td>
<td>Web Architecture</td>
</tr>
</table>
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Webpage</title>
<meta name="author" content="Kay Ashaolu" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
Main Content
</body>
</html>
<article>
<section>
<header>Section 1 header</header>
<p>Section 1 body</p>
<footer>Section 1 footer</footer>
</section>
<section>
<header>Section 2 header</header>
<p>Section 2 body</p>
<footer>Section 2 footer</footer>
</section>
</article>
<head>
<link rel="stylesheet" href="../css/style.css" type="text/css" />
</head>