[ Prev ]
2022-09-03

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en"> <head>
    <title>Document</title>
</head> <body>
    <h1>Nicholas Hui</h1>
    <img src="picture.jpg" alt="picture of me"/>
    <ul>
        <li>I can code!</li>
        <li>i can code!</li>
        <li>i can code!</li>
    </ul>
</body> </html>
(Edited: 2022-09-03)
<!DOCTYPE html> <html lang="en"> <head> <title>Document</title> </head> <body> <h1>Nicholas Hui</h1> <img src="picture.jpg" alt="picture of me"/> <ul> <li>I can code!</li> <li>i can code!</li> <li>i can code!</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html> <head>
	<title>Dustin Nguyen Resume</title>
	<meta charset="utf-8" />
</head> <body>
	<h1>Dustin Nguyen</h1>
	<p>dustin.t.nguyen@sjsu.edu - 123-456-7890</p>
	<img src="selfie.jpg" alt="Profile Picture"/>
	<h4>Qualifications to be working with you.</h3>
	<ul>
		<li>
			Dedicated to the work given.
		</li>
		<li>
			Collaborative towards everyone.
		</li>
		<li>
			Great in Java.
		</li>
	</ul>
</body> </html>
<!DOCTYPE html> <html> <head> <title>Dustin Nguyen Resume</title> <meta charset="utf-8" /> </head> <body> <h1>Dustin Nguyen</h1> <p>dustin.t.nguyen@sjsu.edu - 123-456-7890</p> <img src="selfie.jpg" alt="Profile Picture"/> <h4>Qualifications to be working with you.</h3> <ul> <li> Dedicated to the work given. </li> <li> Collaborative towards everyone. </li> <li> Great in Java. </li> </ul> </body> </html>
2022-09-05

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html> <head>
	<title> Brandon Ong Resume </title>
	<meta charset=“utf-8” />
</head> <body>
	<h1> Brandon Ong </h1>
	<h2> Contact Info </h2>
	<p> brandon.ong@sjsu.edu </p>
	<img src=“myphoto.jpg” alt=“photo of me” />
	<h3> Why I should be hired </h3>
	<ul>
		<li>Very smart</li>
		<li>Good code</li>
		<li>Cool guy</li>
	</ul>
</body> </html>
<!DOCTYPE html> <html> <head> <title> Brandon Ong Resume </title> <meta charset=“utf-8” /> </head> <body> <h1> Brandon Ong </h1> <h2> Contact Info </h2> <p> brandon.ong@sjsu.edu </p> <img src=“myphoto.jpg” alt=“photo of me” /> <h3> Why I should be hired </h3> <ul> <li>Very smart</li> <li>Good code</li> <li>Cool guy</li> </ul> </body> </html>
X