-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerated.html
More file actions
138 lines (132 loc) · 4.48 KB
/
generated.html
File metadata and controls
138 lines (132 loc) · 4.48 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container{
width: 936px;
height: 445px;
border: 1px solid black;
margin: 0 auto;
padding-top: 5px;
padding-bottom: 10px;
}
.container ul{
list-style-type: none;
}
.header{
background-color: #eeeedd;
padding: 10px 0px;
display: flex;
}
.header table{
width: 50%;
margin: 0 auto;
}
.header table td{
padding: 0px;
}
.information table{
padding: 10px 0px;
font-size: 20px;
display: flex;
width: 95%;
/* border: 1px solid; */
margin: auto;
}
.information table tr,td{
padding-top: 10px;
}
.info-box{
margin: 0px 5px;
border-bottom: 1px dotted;
width: 450px;
}
img{
height: 80px;
width: 80px;
}
.sign{
margin-top: 30px;
}
.sign table{
width: 90%;
margin: 0px auto;
}
.sign table td{
padding: 0px;
}
.footer{
background-color: #eeeedd;
padding: 10px 0px;
text-align: center;
}
</style>
</head>
<body>
<script>
const d = new Date()
document.getElementById("demo").innerHTML = d.getFullYear();
</script>
<div class="container">
<div class="header">
<table>
<tr>
<td rowspan="3"><img src="https://upload.wikimedia.org/wikipedia/commons/archive/8/8e/20130209134529%21COU_LOGO.jpg"/></td>
<td style="font-size: 40px; text-align: center; font-weight: bold;">Comilla University</td>
</tr>
<tr>
<td style="font-size: 20px; text-align: center; ">Cumilla-3506</td>
</tr>
<tr>
<td style="background-color: black; color:white; font-size: 35px; text-align: center; font-weight: bold;">ADMIT CARD</td>
</tr>
<tr>
<td colspan="3" style="font-size: 20px; font-weight: bold; text-align: right;">
2nd Semester Final Examination 2023
</td>
</tr>
</table>
</div>
<div class="information">
<table>
<tr>
<td>Name of the Students: </td>
<td colspan="3"><div class="info-box">Cse Girl</div></td>
</tr>
<tr>
<td>Hall Name: </td>
<td colspan="3"><div class="info-box">Sheikh Hasina Hall</div></td>
</tr>
<tr>
<td>Department: </td>
<td colspan="2"><div class="info-box" style="width: 300px;">Computer Science And Engineering</div></td>
<td>Registration No: </td>
<td><div class="info-box" style="width: 150px;">1</div></td>
</tr>
<tr>
<td>Session: </td>
<td ><div class="info-box" style="width: 150px;">2018-19</div></td>
<td>Examination Roll No: </td>
<td colspan="2"><div class="info-box" style="width: 200px;">1</div></td>
</tr>
</table>
</div>
<div class="sign">
<table>
<tr>
<td>----------------------------------</td>
<td style="text-align: right;">Singed</td>
</tr>
<tr>
<td>Signature of Student</td>
<td style="text-align: right;">Controller of Examination's</td>
</tr>
</table>
</div>
</div>
</body>
</html>