Assignment1: Personal Portfolio Website
Objective: The objective of this project is to apply the knowledge you have gained about HTML, the
basic structure of a webpage, and creating headings, paragraphs, lists, and links to create a personal
portfolio website.
Code :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>DHANUSH - Portfolio</title>
</head>
<body>
<h1>DHANUSH J</h1>
<hr>
<section>
<h2>About Me</h2>
<p> Motivated and detail-oriented pre-final year B.Tech IT
student at Perunthalaivar Kamarajar Institute of Engineering and
Technology. Possessing strong technical knowledge, leadership, and time
management skills, I am eager to contribute to organizational growth
while enhancing my expertise. A fast learner with a passion for
exploring new technologies, I seek opportunities to apply my abilities
in a professional environment.</p>
</section>
<h2>Skills</h2>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Java</li>
<li>Python</li>
<li>C#</li>
</ul>
<h2>Interests</h2>
<ul>
<li>Job Simulation Tasks</li>
<li>Chess</li>
<li>Reading Books</li>
</ul>
<section>
<h2>Projects</h2>
<h3>Simple Railway Reservation System Using NetBeans Tool</h3>
<p>This project is a basic railway reservation system developed
using the NetBeans IDE. It provides users with a simple interface to
book train tickets. The front end of the application is created using
HTML, CSS, and JavaScript, ensuring a responsive and user-friendly
design. The system handles user inputs, validates data, and simulates
the core functionalities of ticket booking and management.</p>
<h3>DeepFake Detection System Using Deep Learning</h3>
<p>This project involves the development of a deepfake
detection system using deep learning techniques. It employs the
Xception model to analyze facial features and detect manipulated or
synthetic video content. The front end is built using HTML, CSS, and
JavaScript, while the backend uses Python for model inference and video
processing. The system achieves an accuracy of approximately 80% in
detecting deepfake videos, making it a reliable solution for
identifying fake media.</p>
</section>
<hr>
<section>
<h2>Contact Information</h2>
<h4>Email : mr.dhanush.j@gmail.com</h4>
<h4>Phone No. : +91 95978-82951</h4>
<h4>Linked In :<a href="www.linkedin.com/in/mr-j-
dhanush">Dhanush J</a></h4>
</section>
</body>
</html>
Output: