[ Prev ]
2022-08-31

-- Aug 31 In-Class Exercise Thread
<!doctype HTML> <html>
    <head>
        <title>In-Class Excercise</title>
        <meta charset="utf-8" />
    </head>
    <body> 
        <h1>Max Wong</h1>
            <h2>Contact: max.wong@sjsu.edu</h2>
        <img src="photo.jpg" alt="This is a picture of me" />
        <h2> Reasons to Hire Me</h2>
        <ul>
            <li>I know how to code</li>
            <li>I can program in Java and Python</li>
            <li>I am learning HTML</li>
        </ul>
    </body>
</html>
<!doctype HTML> <html> <head> <title>In-Class Excercise</title> <meta charset="utf-8" /> </head> <body> <h1>Max Wong</h1> <h2>Contact: max.wong@sjsu.edu</h2> <img src="photo.jpg" alt="This is a picture of me" /> <h2> Reasons to Hire Me</h2> <ul> <li>I know how to code</li> <li>I can program in Java and Python</li> <li>I am learning HTML</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en-US"> <head>
    <meta charset="UTF-8">
    <title>Job Profile</title>
</head> <body>
    <h1>Miguel Vazquez</h1>
    <p>Email: miguel.vazquezbeas@sjsu.edu</p>
    <img src="images/profile_pic.jpg" alt="Profile picture">
    <p><b>Three reasons why I'm awesome:</b></p>
    <ul>
        <li>I love data structures and algorithms</li>
        <li>I'm adaptable</li>
        <li>I'm nice</li>
    </ul>
</body> </html>
(Edited: 2022-08-31)
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <title>Job Profile</title> </head> <body> <h1>Miguel Vazquez</h1> <p>Email: miguel.vazquezbeas@sjsu.edu</p> <img src="images/profile_pic.jpg" alt="Profile picture"> <p><b>Three reasons why I'm awesome:</b></p> <ul> <li>I love data structures and algorithms</li> <li>I'm adaptable</li> <li>I'm nice</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<head>
        <title> Siddhita's profile </title>
</head> <body>
        <h1> Siddhita Joshi </h1>
        <h2> CS Student at SJSU </br> Contact: siddhita84@gmail.com </h2>
        <img src="test.jpg" alt="My picture" />
        <ul>
                <li> Java </li>
                <li> Python </li>
                <li> AWS  </li>
        </ul>
</body>
<head> <title> Siddhita's profile </title> </head> <body> <h1> Siddhita Joshi </h1> <h2> CS Student at SJSU </br> Contact: siddhita84@gmail.com </h2> <img src="test.jpg" alt="My picture" /> <ul> <li> Java </li> <li> Python </li> <li> AWS </li> </ul> </body>

-- Aug 31 In-Class Exercise Thread
<!Doctype html> <html>
	<head>
		<title>8/31 Class Excercise</title>
		<meta charset='utf-8'/>
	</head>
	<body>
		<h1>
			Mark Masulis
		</h1>
		<p>mark.masulis@sjsu.edu</p>
		<p>(123) 456-7890</p>
		<img src="https://stickershop.line-scdn.net/stickershop/v1/product/13815473/LINEStorePC/main.png;compress=true" alt="Picture of me"/>
		<ul>
			<li>I am a genius coder</li>
			<li>I have 20 years experience</li>
			<li>I can travel through time</li>
		</ul>
	</body>
</html>
(Edited: 2022-08-31)
<!Doctype html> <html> <head> <title>8/31 Class Excercise</title> <meta charset='utf-8'/> </head> <body> <h1> Mark Masulis </h1> <p>mark.masulis@sjsu.edu</p> <p>(123) 456-7890</p> <img src="https://stickershop.line-scdn.net/stickershop/v1/product/13815473/LINEStorePC/main.png;compress=true" alt="Picture of me"/> <ul> <li>I am a genius coder</li> <li>I have 20 years experience</li> <li>I can travel through time</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html>
    <head>
        <title>Resume</title>
    </head>
    <body>
        <h1>Aadit Dubey</h1>
        <h2>Email: dubeyaadit@gmail.com</h2>
        <h2>Phone: xxxxxxxxxx</h2>
        <div>
            <img src="/Users/aaditdubey/Desktop/Screen Shot 2022-02-06 at 10.57.58 PM.png" alt = "ME">
        </div>
        <h3>Why hire me you ask?</h3>
        <ul>
            <li>I am a student of CS 174 with professor Pollet</li>
            <li>PLEASE</li>
            <li>I have a nice heart</li>
    </body>
</html>
<!DOCTYPE html> <html> <head> <title>Resume</title> </head> <body> <h1>Aadit Dubey</h1> <h2>Email: dubeyaadit@gmail.com</h2> <h2>Phone: xxxxxxxxxx</h2> <div> <img src="/Users/aaditdubey/Desktop/Screen Shot 2022-02-06 at 10.57.58 PM.png" alt = "ME"> </div> <h3>Why hire me you ask?</h3> <ul> <li>I am a student of CS 174 with professor Pollet</li> <li>PLEASE</li> <li>I have a nice heart</li> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en-US">
    <head>
        <title>To recruit, or not to recruit</title>
        <meta charset="utf-8" />
    </head>
    <body>
        <h1>Abhijn Chadalawada</h1>
        <p>
            Contact: abhijn.chadalawada@gmail.com
        </p>
        <img src="test.jpeg" alt="My photo" />
        <ul>
            <li>Cool</li>
            <li>Smart</li>
            <li>Awesome</li>
        </ul>
    </body>
</html>
<!DOCTYPE html> <html lang="en-US"> <head> <title>To recruit, or not to recruit</title> <meta charset="utf-8" /> </head> <body> <h1>Abhijn Chadalawada</h1> <p> Contact: abhijn.chadalawada@gmail.com </p> <img src="test.jpeg" alt="My photo" /> <ul> <li>Cool</li> <li>Smart</li> <li>Awesome</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en"> <head>
    <title>Class Excercise</title>
    <meta charset='utf-8'/>
</head> <body>
    <div>
        <h1>Yuki Saito</h1>
        <p>yuki.saito@sjsu.edu</p>
        <p>(123)444-5555</p>
        <p>77 Lincoln Ave</p>
    </div>
    <img src="https://i.guim.co.uk/img/media/26392d05302e02f7bf4eb143bb84c8097d09144b/446_167_3683_2210/master/3683.jpg?width=1200&height=900&quality=85&auto=format&fit=crop&s=11e949fc5d06576bc8b80ec192896753" alt="cat photo" height="200px">
    <ul>
        <li>
            Studying Software Engineering at San Jose State University
        </li>
        <li>
            Eager to learn and grow
        </li>
        <li>
            Want to own a cat
        </li>
    </ul>
</body> </html>
<!DOCTYPE html> <html lang="en"> <head> <title>Class Excercise</title> <meta charset='utf-8'/> </head> <body> <div> <h1>Yuki Saito</h1> <p>yuki.saito@sjsu.edu</p> <p>(123)444-5555</p> <p>77 Lincoln Ave</p> </div> <img src="https://i.guim.co.uk/img/media/26392d05302e02f7bf4eb143bb84c8097d09144b/446_167_3683_2210/master/3683.jpg?width=1200&height=900&quality=85&auto=format&fit=crop&s=11e949fc5d06576bc8b80ec192896753" alt="cat photo" height="200px"> <ul> <li> Studying Software Engineering at San Jose State University </li> <li> Eager to learn and grow </li> <li> Want to own a cat </li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html>
    <head>
        <title>In-Class Exercise</title>
        <meta charset="utf-8" />
    </head>
    <body>
    <h1>Yuto Yoshimori</h1>
    <p>yuto.yoshimori@sjsu.edu</p>
    <img src="myphoto.gif" alt="This is a picture of me" />
    <h2>Three reasons why I'm awesome and you should hire me.</h2>
    <ul>
        <li>I can program in Java</li>
        <li>I can program in SQL </li>
        <li>I'm learning web server program</li>
    </ul>
    </body>
</html>
<!DOCTYPE html> <html> <head> <title>In-Class Exercise</title> <meta charset="utf-8" /> </head> <body> <h1>Yuto Yoshimori</h1> <p>yuto.yoshimori@sjsu.edu</p> <img src="myphoto.gif" alt="This is a picture of me" /> <h2>Three reasons why I'm awesome and you should hire me.</h2> <ul> <li>I can program in Java</li> <li>I can program in SQL </li> <li>I'm learning web server program</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en"> <head>
    <title>In-Class Exercise</title>
</head> <body>
    <h1> Sabrina Ly</h1>
    <img src="smile.png" alt="Smiley Face Picture">
    <h2>About Me</h2>
    <p>I am a 3rd year SE major at San Jose State University.
        I am from Oakland and am excited to learn about web development!
    </p>
    <h2>Reasons why I should be hired</h2>
    <ul>
        <li>Knows Java, C, JS, HTML, CSS</li>
        <li>Works well with others</li>
        <li>From SJSU!</li>
    </ul>
</body> </html>
<!DOCTYPE html> <html lang="en"> <head> <title>In-Class Exercise</title> </head> <body> <h1> Sabrina Ly</h1> <img src="smile.png" alt="Smiley Face Picture"> <h2>About Me</h2> <p>I am a 3rd year SE major at San Jose State University. I am from Oakland and am excited to learn about web development! </p> <h2>Reasons why I should be hired</h2> <ul> <li>Knows Java, C, JS, HTML, CSS</li> <li>Works well with others</li> <li>From SJSU!</li> </ul> </body> </html>

-- Aug 31 In-Class Exercise Thread
My Job Profile

Tyler Nguyen

Email: tyler.h.nguyen@sjsu.edu

I am smart I am responsible I am cool
<nowiki><!DOCTYPE html> <html lang="en"> <head> <title>My Job Profile</title> <meta charset="utf-8" /> </head> <body> <h1>Tyler Nguyen</h1> <p><b>Email: tyler.h.nguyen@sjsu.edu</b></p> <img src="myphoto.jpg" alt="Tyler Nguyen Photo" /> <ul> <li>I am smart</li> <li>I am responsible</li> <li>I am cool</li> </ul> </body> </html></nowiki>
[ Next ]
X