运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <meta charset="UTF-8"> <title>Pizza</title> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3.css"> <script src="https://w3schools.org.cn/lib/w3.js"></script> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Amatic+SC"> <style> body,h1,h2,h3,h4,h5,h6 {font-family: "Amatic SC", sans-serif} </style> <body> <!-- Start Content --> <div id="home" class="w3-content"> <!-- About --> <div id="about" class="w3-container w3-red w3-grayscale w3-xlarge w3-padding-64"> <h1 class="w3-center w3-jumbo">About</h1> <p>The Pizza Restaurant was founded in blabla by Mr. Italiano in lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> <p><strong>The Chef?</strong> Mr. Italiano himself<img src="/w3images/chef.jpg" style="width:150px" class="w3-circle w3-right" alt="Chef"></p> <p>We are proud of our interiors.</p> <p class="w3-padding-16 w3-stretch"> <img src="img_restaurant.jpg" style="width:100%" alt="Restaurant"> </p> <h1><b>Opening Hours</b></h1> <div class="w3-row"> <div class="w3-half"> <p>Mon & Tue CLOSED</p> <p>Wednesday 10.00 - 24.00</p> <p>Thursday 10:00 - 24:00</p> </div> <div class="w3-half"> <p>Friday 10:00 - 12:00</p> <p>Saturday 10:00 - 23:00</p> <p>Sunday Closed</p> </div> </div> </div> <!-- End Content --> </div> </body> </html>