2016-02-10

Feb 10 Class Thread.

Post the code you make to this thread and I'll try to look at in class.
Best, Chris
Post the code you make to this thread and I'll try to look at in class. Best, Chris

-- Feb 10 Class Thread
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>CS174-Feb10</title>
        <meta charset="utf-8" />
	<meta name="author" content="Tyler Jones" />
	</head>
	<body>
		<h1 style="position: relative; font-size: 30pt;">CS 174, Feb 10 HTML5 Page</h1>
		

<div> Some of the classes I'm taking this semester include: <ul> <li>CS 166</li> <li>CS 174</li> <li>ENGR 100W</li> <li>CMPE 133</li> <li>CMPE 187</li> </ul>

<a href="http://www.sjsu.edu/">Visit The Official SJSU Site Here!</a> </div> </body>
</html>
(Edited: 2016-02-10)
((resource:feb10.html|Resource Description for feb10.html)) <!DOCTYPE html> <html lang="en"> <head> <title>CS174-Feb10</title> <meta charset="utf-8" /> <meta name="author" content="Tyler Jones" /> </head> <body> <h1 style="position: relative; font-size: 30pt;">CS 174, Feb 10 HTML5 Page</h1> <br><br> <div> Some of the classes I'm taking this semester include: <ul> <li>CS 166</li> <li>CS 174</li> <li>ENGR 100W</li> <li>CMPE 133</li> <li>CMPE 187</li> </ul> <br><br> <a href="http://www.sjsu.edu/">Visit The Official SJSU Site Here!</a> </div> </body> </html>

-- Feb 10 Class Thread
<!DOCTYPE html> <html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<ul>
			<li><a href="http://www.sjsu.edu">SJSU's Main Page</a></li>
			<li>CS 174</li>
		</ul>
	</body>
</html>
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <ul> <li><a href="http://www.sjsu.edu">SJSU's Main Page</a></li> <li>CS 174</li> </ul> </body> </html>

-- Feb 10 Class Thread
<!DOCTYPE html> <html>
	<head>
		<title> CS 174 Page - Aayush Neupane</title>
	</head>
	<body>
		<ul>
			<li>Google</li>
			<li>Yahoo</li>
			<li>Microsoft</li>
		</ul>
		<a href="http://cs.sjsu.edu">SJSU CS</a>	
	</body>
</html>
<!DOCTYPE html> <html> <head> <title> CS 174 Page - Aayush Neupane</title> </head> <body> <ul> <li>Google</li> <li>Yahoo</li> <li>Microsoft</li> </ul> <a href="http://cs.sjsu.edu">SJSU CS</a> </body> </html>

-- Feb 10 Class Thread
(Edited: 2016-02-10)
((resource:practice1.html|Resource Description for practice1.html))

-- Feb 10 Class Thread
<!DOCTYPE html> <html> <head>
	<title>Inclass Lab1</title>
</head> <body>
<ul>
  <li><a href="http://www.sjsu.edu/">SJSU website</a></li>
  <li><a href="http://www.sjsu.edu/">SJSU website</a></li>
  <li><a href="http://www.sjsu.edu/">SJSU website</a></li>
</ul> </body> </html>
(Edited: 2016-02-10)
((resource:test.html|Resource Description for test.html)) <!DOCTYPE html> <html> <head> <title>Inclass Lab1</title> </head> <body> <ul> <li><a href="http://www.sjsu.edu/">SJSU website</a></li> <li><a href="http://www.sjsu.edu/">SJSU website</a></li> <li><a href="http://www.sjsu.edu/">SJSU website</a></li> </ul> </body> </html>

-- Feb 10 Class Thread
<html>
	<h1>Here is a link to the SJSU website</h1>
	<ul>
		<li>Not a link</li>
		<li>Not a link</li>
		<li>Not a link</li>
	</u>
	<a href="http://www.sjsu.edu">This is a link to SJSU.</a>
</html>
<html> <h1>Here is a link to the SJSU website</h1> <ul> <li>Not a link</li> <li>Not a link</li> <li>Not a link</li> </u> <a href="http://www.sjsu.edu">This is a link to SJSU.</a> </html>

-- Feb 10 Class Thread
<!DOCTYPE html> <html> <head>
  <title>Lab1</title>
</head> <body>
  <ul>
    <li><a href="http://www.sjsu.edu">SJSU</a></li>
    <li>This one's not a link!</li>
  </ul>
</body> </html>
(Edited: 2016-02-10)
((resource:lab1.html|Resource Description for lab1.html)) <!DOCTYPE html> <html> <head> <title>Lab1</title> </head> <body> <ul> <li><a href="http://www.sjsu.edu">SJSU</a></li> <li>This one's not a link!</li> </ul> </body> </html>

-- Feb 10 Class Thread
<!DOCTYPE html> <html>
    <head>
        <title>Something, something Dark Side</title>
    </head>
    <body>
        <ul>
            <li><a href="http://www.sjsu.edu">Don't click here!</a></li>
            <li>Click here instead!</li>
        </ul>
    </body>
</html>
<!DOCTYPE html> <html> <head> <title>Something, something Dark Side</title> </head> <body> <ul> <li><a href="http://www.sjsu.edu">Don't click here!</a></li> <li>Click here instead!</li> </ul> </body> </html>

-- Feb 10 Class Thread
<!DOCTYPE html> <html> <head> <title>February10</title> </head> <body>
<h2>Unordered</h2>
<ul>
  <li><a href="http://www.sjsu.edu/">sjsu</a></li>
  <li>csu</li>
  <li>sfsu</li>
</ul>
</body> </html>
<!DOCTYPE html> <html> <head> <title>February10</title> </head> <body> <h2>Unordered</h2> <ul> <li><a href="http://www.sjsu.edu/">sjsu</a></li> <li>csu</li> <li>sfsu</li> </ul> </body> </html>
[ Next ]
X