Skip to content

Commit

Permalink
Day 2 final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
marcric committed Feb 11, 2012
1 parent 8b3b09b commit 84a0e6d
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
7 changes: 7 additions & 0 deletions DosaSite/README.textile
@@ -0,0 +1,7 @@
h1. PFTWWR Day 2

h3. What is it?

* Programming for the Web with Ruby Day 2 exercises

_*"Marcos Ricardo(MarcRic's Home)":http://marcric.com*_
Binary file added DosaSite/public/images/dosa.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions DosaSite/public/index.html
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>

<head>
<title>Dosa Diner</title>
<meta charset="utf-8">
<link rel="stylesheet" href="stylesheets/dosasite.css">
</head>

<body>
<h1><img src="images/dosa.jpg" alt="Dosa Diner" />Dosa Diner</h1>

<h2>The Restaurant</h2>
<p>The Dosa Diner offers casual lunch and dinner fare in a hip atmosphere. The menu changes regularly to highlight the freshest ingredients.</p>

<h2>Catering Services</h2>
<p>You have fun... we'll do the cooking. Dosa Diner Catering can handle events from snacks for bridge club to elegant corporate fundraisers.</p>

<h2>Location and Hours</h2>
<p>Deccan Corner in Pune, India;
Monday through Thursday 11am to 9pm, Friday and Saturday, 11am to midnight</p>
</body>
<script src="javascript/dosasite.js" type="text/javascript" charset="utf-8"></script>
</html>
1 change: 1 addition & 0 deletions DosaSite/public/javascript/dosasite.js
@@ -0,0 +1 @@
alert("Hello Course Participants");
15 changes: 15 additions & 0 deletions DosaSite/public/stylesheets/dosasite.css
@@ -0,0 +1,15 @@
body {
background-color: #C2A7F2;
font-family: sans-serif;
}
h1 {
color: #2A1959;
border-bottom: 2px solid #2A1959;
}
h2 {
color: #474B94;
font-size: 1.2em;
}
h2, p {
margin-left: 120px;
}

0 comments on commit 84a0e6d

Please sign in to comment.