-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
88 lines (72 loc) · 1.25 KB
/
index.php
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>jalali date demo</title>
</head>
<style>
a{
text-decoration: none;
color:black;
}
@font-face {
font-family: 'Tanha';
src: url('examples/fonts/Tanha-FD.eot') format('eot'),
url('examples/fonts/Tanha-FD.woff') format('woff'),
url('examples/fonts/Tanha-FD.ttf') format('truetype');
font-style:normal;
font-weight:normal;
}
Body
{
background-color: #EEEEDD;
font-family: Tanha;
color: #000000;
font-size: 14 px;
margin-top: 0;
margin-left: 0
}
.container{
width: 100%;
height: 100%;
}
.row{
padding-right: 30px;
padding-left: 30px;
}
.col5{
width: 50%;
}
.center{
float: none;
margin:0 auto;
}
.year{
padding: 20px;
background: #74dcd2;
}
.month{
padding: 20px;
background: #ff4949;
}
.textcenter{
text-align: center;
}
.margin-top{
margin-top:15%;
}
.title{
margin-bottom: 2%;
font-size: 20px;
font-weight: bold;
}
</style>
<body>
<div class="container">
<div class="row margin-top">
<div class="title textcenter">دمو ها</div>
<a href="examples/year.php"><div class="col5 center textcenter year">دموی تقویم سال</div></a>
<a href="examples/month.php"><div class="col5 center textcenter month">دموی تقویم ماه</div></a>
</div>
</div>
</body>
</html>