Skip to content

Instantly share code, notes, and snippets.

@MosheBerman
Created September 12, 2014 04:32
Show Gist options
  • Select an option

  • Save MosheBerman/2b164c29ce0ef9e6c7fa to your computer and use it in GitHub Desktop.

Select an option

Save MosheBerman/2b164c29ce0ef9e6c7fa to your computer and use it in GitHub Desktop.
<!DOCTYPE html><!--HTML5 doctype-->
<html>
<!--Rifka Rabinowitz lab2 file-->
<head>
<title> Rifka Rabinowitz CISC 1600 Lab #2 </title>
<link rel="stylesheet" href="./CSS/Rabinowitz-style.css">
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0"/>
<script src='intelxdk.js'></script>
<script type="text/javascript">
/* Intel native bridge is available */
var onDeviceReady=function(){
//hide splash screen
intel.xdk.device.hideSplashScreen();
};
document.addEventListener("intel.xdk.device.ready",onDeviceReady,false);
</script>
</head>
<body>
<h1 title = "In this section I will tell you more about my home page"> Welcome to Rifka's Lab 2 Page</h1>
<h3> CISC 1600 </h3>
<p></p>
<p class="p1"> Click below on some links if you would like to visit them: <br/>
<a href = "http://www.google.com"> Google </a> <br/>
<a href = "http://www.facebook.com"> Facebook </a> <br/>
<a href = "http://www.amazon.com"> Amazon </a> <br/>
<a href = "http://www.brooklyn.cuny.edu"> Brooklyn College </a> <br/>
<a href = "http://www.gmail.com"> Gmail </a> <br/> <br/>
</p>
<p class= "p2"> Below is a shopping list that <i> IS NOT </i> in order: </p>
<ul>
<li> Bread </li>
<li> Apples </li>
<li> Oranges </li>
<li> Water Bottles </li>
<li> Milk </li>
</ul>
<p class = "p3"> Below is a shopping list that <i> IS </i> in order: </p>
<ol>
<li> Apples </li>
<li> Oranges </li>
<li> Milk </li>
<li> Bread </li>
<li> Water Bottles</li>
</ol>
<p class="p2"> Below is a navigation list: </p> <br/>
<nav>
<ul>
<li><a href = "#"> Menu 1 </a></li>
<li><a href = "#"> Menu 2 </a></li>
<li><a href = "#"> Menu 3 </a></li>
</ul>
</nav>
<section>
<article>
<header>
<h5> First Article: </h5>
</header>
<section>
This is the content of the first article.
This is really important that is why we <mark> highlighted it!</mark>
</section>
</article>
<article>
<header>
<h5> Second Article:</h5>
</header>
<section>
This is the content of the second article
</section>
</article>
</section>
<aside>
<figure>
<img width = "550" height = "400" src = "images/Guitar%20and%20the%20Beach.jpg"/>
<figcaption> Guitar at the Beach </figcaption>
</figure>
</aside>
<br/> <br/> <br/>
<p class="p3">
This is how a <div class ="caution"> division tag </div> behaves. <br/>
This is how a <span class ="caution"> span tag </span> behaves. <br/>
</p>
<br/> <br/> <br/>
<table>
<tr>
<td> A </td>
<td> B </td>
<td> C </td>
<td> D </td>
</tr>
<tr>
<td> E </td>
<td> F </td>
<td> G </td>
<td> H </td>
</tr>
<tr>
<td> I </td>
<td> J </td>
<td> K </td>
<td> L </td>
</tr>
<tr>
<td> M </td>
<td> N </td>
<td> O </td>
<td> P </td>
</tr>
<tr>
<td> Q </td>
<td> R </td>
<td> S </td>
<td> T </td>
</tr>
<tr>
<td> U </td>
<td> V </td>
<td> W </td>
<td> X </td>
</tr>
<tr>
<td> Y </td>
<td> Z </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment