forked from omunadkat004/Odoo-combat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf.php
123 lines (119 loc) · 3.47 KB
/
pdf.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
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
<!-- <!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">
<link rel="stylesheet" href="style2.css">
<title>Pdf</title>
<style>
</style>
</head>
<body>
<header>
<br>
<br>
<div></div>
<h1><center>Study Material</center></h1>
<br>
<br>
<a target="_blank" href="hw_clanguage.pdf"><img src="clanguage.jpg" width="360px" ></a>
<a target="_blank" href="hw_cpp.pdf"><img src="c++.jpeg" width="360px" ></a>
<a target="_blank" href="hw_java.pdf"><img src="java.png" width="360px" ></a>
<a target="_blank" href="hw_python.pdf"><img src="python.jpg" width="360px" ></a>
</header>
</body>
</html> -->
<!-- <!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">
<link rel="stylesheet" href="style2.css">
<title>Pdf</title>
<style>
img {
width: 360px;
height: 330px;
margin: 13px;/* Adjust the height as needed */
}
</style>
</head>
<body>
<header>
<br>
<br>
<div></div>
<h1><center>Study Material</center></h1>
<br>
<br>
<a target="_blank" href="hw_clanguage.pdf"><img src="clanguage.jpg"></a>
<a target="_blank" href="hw_cpp.pdf"><img src="c++.jpeg"></a>
<a target="_blank" href="hw_java.pdf"><img src="java.png"></a>
<a target="_blank" href="hw_python.pdf"><img src="python.jpg"></a>
</header>
</body>
</html> -->
<!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">
<link rel="stylesheet" href="style2.css">
<title>Pdf</title>
<style>
*{
margin:0px;
padding:0px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.course{
display: flex;
flex-direction: row;
height:490px;
padding: 40px;
}
img {
width: 40vh;
height: 25vh;
border-radius: 20px;
border-color: wheat;
border-width: 5px;
border-style:groove;
}
.main{
background-image: linear-gradient(rgb(0, 0, 0),rgb(13, 13, 68),rgb(5, 14, 92));
height:100%;
margin:0;
padding:0;
}
.hed{
font-size: 20px;
padding: 50px;
color: wheat;
}
.block{
padding:30px;
}
</style>
</head>
<div class="main">
<body>
<header>
<br>
<br>
<div class="hed"><h1><center>Study Material</center></h1></div>
<br>
<br>
<div class="course">
<a target="_blank" href="hw_clanguage.pdf" class="block"><img src="clanguage.jpg"></a>
<a target="_blank" href="hw_cpp.pdf" class="block"><img src="c++.jpeg"></a>
<a target="_blank" href="hw_java.pdf" class="block"><img src="java.jpeg.jpg"></a>
<a target="_blank" href="hw_python.pdf" class="block"><img src="python.jpg"></a>
</div>
</header>
</body>
</div>
</html>