-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay12.html
142 lines (138 loc) · 3.27 KB
/
Day12.html
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
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Training TR-102 Report</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #eef2f7;
color: #333;
}
.container {
width: 90%;
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
background-color: #2c3e50;
padding: 10px 20px;
color: #fff;
border-radius: 10px 10px 0 0;
}
header img {
height: 50px;
margin: 5px 0;
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 20px;
}
p {
text-align: center;
color: #7f8c8d;
font-size: 18px;
}
h2 {
text-align: center;
color: #2c3e50;
margin-bottom: 20px;
}
.pdf-container {
text-align: center;
margin: 20px 0;
}
.pdf-container iframe {
width: 100%;
height: 600px;
border: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.links-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-bottom: 20px;
}
.links-container a {
display: inline-block;
padding: 10px 20px;
background-color: #3498db;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.links-container a:hover {
background-color: #2980b9;
}
footer {
text-align: center;
padding: 20px;
margin-top: 40px;
background-color: #2c3e50;
color: #fff;
border-radius: 0 0 10px 10px;
}
footer a {
color: #3498db;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
header {
flex-direction: column;
align-items: center;
}
header .home-button {
font-size: 14px;
padding: 8px 16px;
}
header img {
height: 40px;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<a href="https://www.gndec.ac.in/"
><img src="gndecLogo.png" alt="GNDEC Logo"
/></a>
</header>
<h1>Training TR-102 Report</h1>
<p>
By Samridhi Sharma, URN 2203551, Guru Nanak Dev Engineering College,
Ludhiana
</p>
<div class="container">
<h1>Training Report Day 12</h1>
<div class="pdf-container">
<iframe src="./day12.pdf"></iframe>
</div>
</div>
<footer>
<a href="https://www.linkedin.com/in/samridhi-sharma-715561263/">
©Samridhi@2024</a
>
</footer>
</div>
</body>
</html>