-
-
Save codeforfun-jp/7e0139cdd0375faa61d79f6bf6ebaa2b to your computer and use it in GitHub Desktop.
PHP Calendar 4
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> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>PHPカレンダー</title> | |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | |
<style> | |
a { | |
text-decoration: none; | |
} | |
th { | |
height: 30px; | |
text-align: center; | |
} | |
td { | |
height: 100px; | |
} | |
.today { | |
background: orange !important; | |
} | |
th:nth-of-type(1), td:nth-of-type(1) { | |
color: red; | |
} | |
th:nth-of-type(7), td:nth-of-type(7) { | |
color: blue; | |
} | |
</style> | |
</head> | |
<body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment