网页设计

如何设置html字体

时间:2024-10-03 17:02:16 网页设计 我要投稿
  • 相关推荐

如何设置html字体

  HTML“超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。那么,html字体怎么设置?下面百分网小编带大家一起来看看详细内容,希望对大家有所帮助!

  如何设置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();

  }

  }

【如何设置html字体】相关文章:

HTML5字体设置的方法03-29

eclipse如何设置字体大小09-12

如何设置windows 7操作系统的字体图解03-30

word字体底纹颜色怎么设置11-28

如何设置Photoshop11-30

如何设置dns07-22

word如何修改字体的大小颜色12-05

ps设置风吹立体感文字字体教程03-12

如何运用photoshop制作可爱的泡泡字体03-24