1. 調整標題之後段落的字型大小
Free Hosting Features
We provide completely free hosting, includes a powerful control panel, FTP, site builder. automatic script installer and many more features...
<div class="header_text_bg2">
<div class="header_text2">
<img src="images/server2.png" alt="Free hosting" />
<h2><small>Free Hosting Features</small></h2>
<p><b>We provide completely free hosting, includes a powerful control panel, FTP, site builder. automatic script installer and many more features...</b></p>
<div class="spacer"></div>
</div>
2. 重新上載檔案
https://camerondiaz.gq/freehosting/images/3.jpg
==
<p>調整字型大小
調整 <p> 段落的字型大小最快的方法是透過 CSS 的 font-size 屬性。您可以直接在 HTML 標籤內使用內聯樣式(Inline Style),語法如下:
html
<p style="font-size: 20px;">這是調整後的文字大小</p>
Use code with caution.
常見的字體大小設定方式包含:
像素 (px):如 <p style="font-size: 16px;">。
相對單位 (rem / em):如 <p style="font-size: 1.5em;">。
百分比 (%):如 <p style="font-size: 120%;">。
若要全站統一設定,建議將樣式寫在 <style> 標籤或外部 CSS 檔案中:
html
<style>
p {
font-size: 18px; /* 設定所有 p 段落字體大小 */
}
</style>
Use code with caution.
沒有留言:
張貼留言