Lab¶
Exercise 1¶
<!DOCTYPE html>
<html>
<body>
<p><em>WelcomeBackStudents</em></p>
<p>Full Stack Development 1</p>
<p>Intro to HTML</p>
<p>CSS</p>
<p>JavaScript</p>
</body>
</html>
Exercise 2¶
<!DOCTYPE html>
<html>
<body>
<p>Toronto Maple Leafs</p>
<p><span style="color: blue; font: bold;">2021 NHL</span> Stanely Cup Champions</p>
</body>
</html>
Exercise 3¶
<!DOCTYPE html>
<p>Hello my name is Hana</p>
<!-- this a paragraph line with element tags -->
<p>This a line some additional text.</p>
Exercise 4¶
<!DOCTYPE html>
<html>
<h1>My First HTML Document</h1>
<body>
<p>My First HTML Document</p>
<p>Hello World!</p>
</body>
</html>
Exercise 5¶
<!DOCTYPE html>
<html>
<body>
<h1>Blockchain</h1>
<p>A <strong>blockchain</strong>, originally block chain, is a growing list of records, called blocks, that are linked using cryptography.Each block contains a cryptographic hash of the previous block,a timestamp, and transaction data (generally represented as a Merkle tree).</p>
</body>
</html>