xxxxxxxxxx
42
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Dokdo|Montserrat|Playball" rel="stylesheet">
<meta charset="utf-8" />
</head>
<body>
<div id="title">
<h1>Welcome to HTML!</h1>
</div>
<p>Before we get to <i>fun stuff</i> we need to make sure we all understand the basics of <b>HTML!</b></p>
HTML is a <del>programming</del> <u>mark up</u> language that gives structure to webpages.
<br><br>
<h3>We can think of it like a page's bones.</h3>
You can do so much with HTML:
<ul class="a">
<li>Define paragraphs</li>
<li>Create divs (boxes) to hold and organize content</li>
<li>Write lists (ordered or not!)</li>
<li>You can even <span id="rosie">change text color</span>, but it's often better to do this in a separate CSS style sheet.</li>
</ul>
HTML uses tags (opening and closing) and a hierarchy system to structure webpages. You can even give seperate elements classes and IDs to make groupings easier!
<br><br>
If you have any questions, you can always ask Courtney or José for help!<br><br>
<img src="https://js.devexpress.com/Content/Images/features/html5-css-javascript-logos.png" width="300">
<script src="sketch.js"></script>
</body>
</html>