html中font标签本身就是一个设置字体属性的标签,那么它的具体属性有哪些呢?下面由我为大家整理了html中的font设置字体的相关知识,希望对大家有帮助!
html中font设置字体 总结
一、font标签语法与结构
<font color="#FF0000">www.divcss5.com 颜色</font>
Font color设置文本颜色为红色“#FF0000” ,你可能想了解css字体颜色:css color
<font size="6">www.divcss5.com 文字大小</font>
Font size设置文本文字大小尺寸为6 ,你可能想了解css字体大小:css font-size
<font face="微软雅黑">微软雅黑 字体</font>
Font face设置文本字体为“微软雅黑” ,你可能想了解css字体设置: css font-family
二、Font标签说明
常常我们在一个网页中直接使用font标签进行对文本设置文本字体、文本文字大小、文本颜色等样式。
三、Font应用案例html代码
<font color="#FF0000">www.divcss5.com 设置文本颜色</font><br />
<font size="6">www.divcss5.com 设置文本字体大小</font><br />
<font face="微软雅黑">微软雅黑字体 设置了文本字体</font>
补充:css5对于font直接设置网页文本样式标签总结
1)、使用font size设置文字大小
2)、使用html font标签face属性 设置文字字体
3)、使用html font color 设置文字颜色
如何设置html字体
设置字体
html
body
A heading
A paragraph
/body
/html
设置文字尺寸
html
body
A heading
A paragraph
/body
/html
设置字体颜色
html
body
A heading
A paragraph
/body
/html
设置文字的字体、字体尺寸、字体颜色
html
body
hello world
/body
/html
如何设置Java对话框字体
两种办法可以解决:
一、使用简单的HTML语法可以控制文字的大小:
二、(推荐!)先看参数
JOptionPane.showMessageDialog(Component, Object, String, int)第二个参数为Object,我们可以用一个JLabel来替代以前的String,给JLabel一个Font就OK了。
import javax.swing.*
import java.awt.*
import java.awt.event.*
import java.awt.event.ActionEvent
public class Test {
JFrame frame
JButton button
Font font
public Test(){
font = new Font("宋体",0,12)
UIManager.put("Button.font",font)
UIManager.put("Label.font",font)
frame = new JFrame("Test")
button = new JButton("弹出")
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent actionEvent) {
JLabel l = new JLabel("用户名或密码错误 请重新输入")
JOptionPane.showMessageDialog(frame,l,"错误",JOptionPane.ERROR_MESSAGE)
}
})
frame.getContentPane().add(button)
frame.setSize(300, 200)
frame.setVisible(true)
}
public static void main(String[] args) {
new Test()
}
}