-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (149 loc) · 3.92 KB
/
index.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
143
144
145
146
147
148
149
150
151
152
153
<!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;
}
.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: #7d34dbad;
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>
<section>
<h2>6 Week training at Excellence Technology,Mohali</h2>
<div class="links-container">
<a href="Day1.html">Day 1</a>
<a href="Day2.html">Day 2</a>
<a href="Day3.html">Day 3</a>
<a href="Day4.html">Day 4</a>
<a href="Day5.html">Day 5</a>
<a href="Day6.html">Day 6</a>
<a href="Day7,8,9,10,11.html">Day 7-11</a>
<a href="Day12.html">Day 12</a>
<a href="Day13">Day 13</a>
<a href="Day14.html">Day 14</a>
<a href="Day15.html">Day 15</a>
<a href="Day16.html">Day 16</a>
<a href="Day17.html">Day 17</a>
<a href="Day18.html">Day 18</a>
<a href="Day19.html">Day 19</a>
<a href="Day20.html">Day 20</a>
<a href="Day21.html">Day 21</a>
<a href="day22,23.html">Day 22-25</a>
<a href="day26.html">Day 26</a>
<a href="day27.html">Day 27</a>
<a href="day28.html">Day 28</a>
<a href="day29.html">Day 29</a>
<a href="">Day 30-35</a>
</div>
</section>
<footer>
<a href="https://www.linkedin.com/in/samridhi-sharma-715561263/">
©Samridhi@2024</a
>
</footer>
</div>
</body>
</html>