h5純文字手機端模板
阿新 • • 發佈:2020-12-15
因為業務需要整合了一h5純文字手機端的模板,提供給像我一樣的純小白使用
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>標題</title> <meta name="viewport" /*字型型別*/ content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <style> p{ font-family:PingFangSC-Regular; /*字型型別*/ font-size: 13px; /*字型大小*/ line-height: 20px; /*行間距*/ letter-spacing: 100%; /*字間距*/ margin-top: 13px; /*段落*/ color: black; /*顏色*/ margin:10px 10px 10px 20px /*頁面間距:上 右 下 左*/ } </style> </head> <body> <p><strong>加粗標題</strong></p> <p>內容內容內容內容內容內容內容內容</p> <p>內容內容內容內容內容內容內容內容</p> </body> </html>