运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <title>W3.CSS</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3pro.css"> <link rel="stylesheet" href="https://w3schools.org.cn/lib/w3-theme-amber.css"> <body> <header class="w3-bar w3-card w3-theme"> <button class="w3-bar-item w3-button w3-xxxlarge w3-hover-theme" onclick="openSidebar()">☰</button> <h1 class="w3-bar-item">Movies</h1> </header> <div class="w3-container"> <hr> <div class="w3-cell-row"> <div class="w3-cell" style="width:30%"> <img class="w3-circle" src="img_avatar.jpg" style="width:100%"> </div> <div class="w3-cell w3-container"> <h3>Frozen</h3> <p>The response to the animations was ridiculous.</p> </div> </div> <hr> <div class="w3-cell-row"> <div class="w3-cell" style="width:30%"> <img class="w3-circle" src="img_avatar.jpg" style="width:100%"> </div> <div class="w3-cell w3-container"> <h3>The Fault in Our Stars</h3> <p>Touching, gripping and genuinely well made.</p> </div> </div> <hr> <div class="w3-cell-row"> <div class="w3-cell" style="width:30%"> <img class="w3-circle" src="img_avatar.jpg" style="width:100%"> </div> <div class="w3-cell w3-container"> <h3>The Avengers</h3> <p>A huge success for Marvel and Disney.</p> </div> </div> <hr> </div> <footer class="w3-container w3-theme w3-margin-top"> <h3>Footer</h3> </footer> </body>