This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--It's a best practice to always declare DOCTYPE!--> | |
<html lang="en"> | |
<head> | |
<title>Practice with Pseudoclass</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>My Page</h1> | |
<p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.Calendar; | |
import java.util.Date; | |
public class HolidayUtil { | |
private int year; | |
private int easterMonth; | |
private int easterDay; | |
private ArrayList<String> holidays; |