index.html
1 <!doctype html> 2 <html> 3 <head> 4 <title>Bar Site</title> 5 <style> 6 body { 7 font-family: sans-serif; 8 max-width: 800px; 9 margin: 0 auto; 10 padding: 2rem; 11 background-color: #fff0f5; 12 } 13 h1 { 14 color: #cc0077; 15 } 16 </style> 17 </head> 18 <body> 19 <h1>Welcome to Bar Site</h1> 20 <p>This is a sample site for the local-net project.</p> 21 <p> 22 This site is being served locally from a "remote" git or rad repository. 23 </p> 24 </body> 25 </html>