-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.html
More file actions
156 lines (149 loc) · 3.26 KB
/
Copy pathinfo.html
File metadata and controls
156 lines (149 loc) · 3.26 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PROJECT INFORMATION</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
.container {
width: 70%;
margin: 40px auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #ccc;
box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
border-radius: 10px;
}
h1 {
text-align: left;
color: #032446;
}
p {
font-size: 16px;
margin-bottom: 25px;
text-align: justify;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 40px;
}
th, td {
border: 1px solid #2c3e50;
padding: 12px;
text-align: left;
}
th {
background-color: #2c3e50;
color: white;
}
.section-title {
padding: 8px;
font-weight: bold;
margin-top: 30px;
margin-bottom: 10px;
}
.logo-container {
display: flex;
justify-content: flex-end;
}
.logo-img {
width: 130px;
margin-bottom: -30px;
margin-top: -10px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo-container">
<img src="st.png" alt="Company Logo" class="logo-img">
</div>
<h1>PROJECT INFORMATION</h1>
This project was developed by <b>K. Gopika</b>, <b>G. Lalitha</b>, <b>A. Harshitha</b>, and <b>M. Reshma</b> as part of a
<b>Cyber Security Internship</b>. The objective of this project is to
<b>help secure organizations in the real world against Cyber Fraud and attacks carried out by hackers.</b>
<div class="section-title">Project Details</div>
<table>
<tr>
<th>Field</th>
<th>Value</th>
</tr>
<tr>
<td>Project Title</td>
<td>Vulnerability Scanner</td>
</tr>
<tr>
<td>Project Domain</td>
<td>Cyber Security & Ethical Hacking</td>
</tr>
<tr>
<td>Start Date</td>
<td>24-May-2025</td>
</tr>
<tr>
<td>End Date</td>
<td>26-June-2025</td>
</tr>
<tr>
<td>Project Status</td>
<td>Completed</td>
</tr>
</table>
<div class="section-title">Developer Details</div>
<table>
<tr>
<th>Name</th>
<!-- <th>Role</th> -->
<th>Employee ID</th>
<th>Email</th>
</tr>
<tr>
<td>K. Gopika</td>
<!-- <td>Lead Developer</td> -->
<td>ST#IS#7688</td>
<td>gopikainter125@gmail.com</td>
</tr>
<tr>
<td>G. Lalitha</td>
<!-- <td>Payload & Logic Developer</td> -->
<td>ST#IS#7695</td>
<td>lalithagannavarapu25@gmail.com</td>
</tr>
<tr>
<td>A. Harshitha</td>
<!-- <td>Testing & GUI Design</td> -->
<td>ST#IS#7697</td>
<td>arepalliharshitha06@gmail.com</td>
</tr>
<tr>
<td>M. Reshma</td>
<!-- <td>Documentation & Report Generation</td> -->
<td>ST#IS#7693</td>
<td>reshma@example.com</td>
</tr>
</table>
<div class="section-title">Company Details</div>
<table>
<tr>
<th>Company</th>
<th>Value</th>
</tr>
<tr>
<td>Name</td>
<td>Supraja Technologies</td>
</tr>
<tr>
<td>Email</td>
<td>contact@suprajatechnologies.com</td>
</tr>
</table>
</div>
</body>
</html>