-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTitle.java
38 lines (27 loc) · 840 Bytes
/
Title.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package GUI;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class Title extends JPanel{
public void BlinkBlink(){
}
public Title() {
setForeground(new Color(255, 255, 255));
setBackground(new Color(0, 0, 0));
setLayout(null);
setPreferredSize(new Dimension(414, 230));
JLabel titleText = new JLabel("Color");
titleText.setForeground(new Color(255, 255, 255));
titleText.setFont(new Font("Courier New", Font.BOLD, 56));
titleText.setBounds(113, 49, 185, 74);
setLayout(null);
//System.out.println("asdafsdfsd");
add(titleText);
JLabel lblQuiz = new JLabel("Quiz");
lblQuiz.setForeground(new Color(255, 255, 255));
lblQuiz.setFont(new Font("Courier New", Font.BOLD, 56));
lblQuiz.setBounds(129, 92, 169, 136);
add(lblQuiz);
}
}