From 06cf9fc0f1eb7c2e65f6225a84e2a5302e65178b Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Tue, 13 Sep 2016 01:54:44 -0400 Subject: [PATCH] Add base framework for ch02-pr03 --- chapter02/chapter02-project03.html | 69 +++++++++++++++++++++++++++++- 1 file changed, 67 insertions(+), 2 deletions(-) diff --git a/chapter02/chapter02-project03.html b/chapter02/chapter02-project03.html index e52d560..afb8e69 100644 --- a/chapter02/chapter02-project03.html +++ b/chapter02/chapter02-project03.html @@ -6,10 +6,75 @@ </head> <body> <header> - + <h1>My Sample Art Store</h1> + <nav> + <a href="#">Home</a> | + <a href="#">Artists</a> | + <a href="#">Artworks</a> | + <a href="#">About Us</a> | + <a href="#">Search</a> + </nav> </header> + <article> + <h2>Mademoiselle Caroline Rivére</h2> + <p>by <a href="#">Jean-Auguste-Dominique Ingres</a> + <section> + <img src="#" alt="Some chick in a dress"></img> + <p> + The portrait of Mademoiselle Caroline Rivére was painted in 1806 by the French Neoclassical + artist Jean Auguste Dominique Ingress, and today hangs in the Lourve. It is the third of three + portraits of the Rivére family the artist painted that year. + </p> + <p> + Date: <i>1806</i> <br /> + Medium: <i>Oil on Canvas</i> <br /> + Dimensions: <i>100 x 70 cm</i> + Home: <i>Musée du Lourve, Paris</i> + </p> + </section> + <a href="#"><img src="#" alt="Add to Basket"></a> + <a href="#"><img src="#" alt="Add to favorites"></a> + <aside> + Share: + <a href="#"><img src="#" alt="Email"></a> + <a href="#"><img src="#" alt="Twitter"></a> + <a href="#"><img src="#" alt="Facebook"></a> + <a href="#"><img src="#" alt="Green Dot Thing"></a> + </aside> + </article> + <section> + <h3>Related Paintings</h3> + <a href="#"><img src="#" alt="Sitting lady."></a> + <a href="#"><img src="#" alt="Old time war."></a> + <a href="#"><img src="#" alt="Another sitting lady."></a> + <a href="#"><img src="#" alt="...is she dead?"></a> + </section> + <section> + <h3>Reviews</h3> + <div> + <h4>Love this painting</h4> + <p>John Smith <img src="#" alt="Four Stars"</p> + <p> + <sub>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras aliquet mauris ipsum, id lacinia + massa efficitur vitae. In luctus magna vitae urna commodo ultrices. Cras pulvinar diam eget magna.</sub> + </p> + </div> + <div> + <h4>It's okay</h4> + <p>Jane Doe <img src="#" alt="Three Stars"</p> + <p> + <sub>Quisque tincidunt accumsan lacus, et aliquam justo consequat eget. Ut sit amet nunc quam.</sub> + </p> + </div> + </section> <footer> - + <nav> + <a href="#">Home</a> | + <a href="#">Art Works</a> | + <a href="#">Artists</a> | + <a href="#">About Us</a> + </nav> + <p><i>Copyright © 2013 My Sample Art Store</i></p> </footer> </body> </html> \ No newline at end of file -- GitLab