HTML是一門用于搭建互聯(lián)網(wǎng)頁面的編程語言,它可以讓我們用簡(jiǎn)單的代碼創(chuàng)建精美的網(wǎng)頁。而今天我們要介紹的是一個(gè)浪漫的HTML代碼——愛心玫瑰表白代碼。
<!DOCTYPE html> <html> <head> <title>愛心玫瑰表白</title> <style> body { background-color: #f2f2f2; } .rose { width: 100px; height: 100px; background: #ff69b4; border-radius: 100px 10px 10px; transform: rotate(45deg); position: relative; margin-left: 50px; margin-top: 50px; } .rose:before, .rose:after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; background: #ff69b4; } .rose:before { left: -50px; top: 0px; } .rose:after { left: 0px; top: -50px; } .heart { width: 100px; height: 100px; background-color: #ff69b4; position: relative; transform: rotate(45deg); margin-left: 200px; margin-top: -100px; } .heart:before, .heart:after { content: ""; position: absolute; width: 100px; height: 100px; background-color: #ff69b4; border-radius: 50%; } .heart:before { top: -50px; left: 0px; } .heart:after { top: 0px; left: -50px; } .message { text-align: center; margin-top: 50px; } h1 { color: #ff69b4; font-size: 48px; } p { font-size: 24px; color: #666; }</head> <body> <div class="rose"></div> <div class="message"> <h1>我喜歡你</h1> <p>你是我心中的玫瑰花,愛情的花語是我的表白,愿得一人心,白首不分離…</p> </div> <div class="heart"></div> </body> </html>
以上代碼的效果是在頁面中心畫出了一個(gè)粉色的愛心和一個(gè)粉色的玫瑰花,并附上了一段浪漫的情話。如果你喜歡一個(gè)人,可以把這份HTML代碼送給Ta,來一場(chǎng)浪漫的玫瑰花之約吧!