Skip to content

Commit 41a73e7

Browse files
committed
remane of root filies to match across all
1 parent 88d872d commit 41a73e7

603 files changed

Lines changed: 179947 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
13.6 MB
Binary file not shown.

2-HTML5 Core/HTML5Core.pptx

3.9 MB
Binary file not shown.
45.5 KB
Loading
12 KB
Binary file not shown.
270 Bytes
Loading
8.63 KB
Loading
90 KB
Loading
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Fourth Coffee - Order</title>
6+
<link rel="stylesheet" href="../css/Site.css" type="text/css" media="screen" charset="utf-8">
7+
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/themes/pepper-grinder/jquery-ui.css" rel="stylesheet" />
8+
<script src="../../../../lib/js/modernizr-2.0.6.js" type="text/javascript"></script>
9+
<script src="../../../../lib/js/jquery-1.7.1.min.js" type="text/javascript"></script>
10+
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/jquery-ui.min.js"></script>
11+
</head>
12+
<body>
13+
<div id="page">
14+
<div id="header">
15+
<p class="site-title"><a href="#">Fourth Coffee</a></p>
16+
<ul id="menu">
17+
<li><a href="#">Home</a></li>
18+
<li><a href="#">About Us</a></li>
19+
</ul>
20+
</div>
21+
<div id="body">
22+
<ol id="orderProcess">
23+
<li><span class="step-number">1</span>Choose Item</li>
24+
<li class="current"><span class="step-number">2</span>Details &amp; Submit</li>
25+
<li><span class="step-number">3</span>Receipt</li>
26+
</ol>
27+
<h1>Place Your Order: Carrot Cake</h1>
28+
<form action="" method="post" id="orderForm">
29+
<fieldset class="no-legend">
30+
<legend>Place Your Order</legend>
31+
<ol>
32+
<li>
33+
<img class="product-image order-image" src="../assets/carrot_cake.jpg" alt="Image of Carrot Cake"/>
34+
</li>
35+
<li class="name" >
36+
<label for="orderName">Your Name</label>
37+
<input type="text" class="field" id="orderName" />
38+
</li>
39+
<li class="email">
40+
<label for="orderEmail">Your Email Address</label>
41+
<input type="text" class="field" id="orderEmail" />
42+
</li>
43+
<li class="website">
44+
<label for="orderWebsite">Your Web Site</label>
45+
<input type="text" class="field" id="orderWebsite" />
46+
</li>
47+
<li class="telephone">
48+
<label for="orderTelephone">Your Phone Number</label>
49+
<input type="text" id="orderTelephone" class="field" />
50+
</li>
51+
<li class="requestedDate">
52+
<label for="deliveryDate">Requested Delivery Date</label>
53+
<input type="text" id="deliveryDate" class="field" />
54+
</li>
55+
<li class="shiping">
56+
<label for="orderShipping">Shipping Address</label>
57+
<textarea rows="4" cols="20" id="orderShipping" class="field"></textarea>
58+
</li>
59+
<li class="quantity">
60+
<label for="orderQty">Quantity</label>
61+
<input type="text" id="orderQty" name="orderQty" value=1 />
62+
x
63+
<span id="orderPrice">$4.99</span>
64+
=
65+
<span id="orderTotal">$4.99</span>
66+
</li>
67+
</ol>
68+
<div id="validationBlock">
69+
This form is currently <span id="validationState"></span>.
70+
</div>
71+
<p class="actions">
72+
<input type="hidden" name="ProductId" value="1" />
73+
<input type="submit" value="Place Order" />
74+
<input type="submit" value="Save for Later" id="saveForLater" />
75+
</p>
76+
</fieldset>
77+
</form>
78+
</div>
79+
<div id="footer">
80+
&copy;2011 - Fourth Coffee
81+
</div>
82+
</div>
83+
<script>
84+
85+
</script>
86+
</body>
87+
</html>

0 commit comments

Comments
 (0)