- Scan ID:
- 68847437-0d26-4114-9335-cf0e642464c3Finished
- Submitted URL:
- https://protapdutta.github.io/Resume/
- Report Finished:
Links · 2 found
The outgoing links identified from the page
Link | Text |
---|---|
https://www.linkedin.com/in/protap-dutta/ | |
https://github.com/CaptainProx21/ |
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 1 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
warning | other |
|
HTML
The raw HTML body of the page
<!DOCTYPE html><html lang="en"><head>
<title>My Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is a protfolio of protap-dutta.
As a learning part of Front-end programming this is
a poject showcasing the practical use of html and css implementation.">
<link rel="icon" type="image/x-icon" href="images/title.webp">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="icons/profile_picture.webp" alt="Protap Dutta" class="profile-picture" style="width:128px;height:128px;">
<h1>Protap Dutta</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hey I am a web developer and love to create beautiful and functional websites.</p>
<p>Currently working on Front-end developemnt using HTML, CSS, Javascript.</p>
<p> I also like photoshop and editing. As a hobby i make poster and
book cover pages for publications.</p>
</section>
<section id="Education">
<h2>Education</h2>
<table class="education-table">
<thead>
<tr>
<th>Degree</th>
<th>Year</th>
<th>Percentage</th>
</tr>
</thead>
<tbody>
<tr>
<td>B.Sc</td>
<td>2022</td>
<td>85%</td>
</tr>
<tr>
<td>HSC</td>
<td>2019</td>
<td>65%</td>
</tr>
<tr>
<td>SSC</td>
<td>2017</td>
<td>75%</td>
</tr>
</tbody>
</table>
<a href="resume.pdf" class="view-pdf-btn" target="_blank"> View Resume </a>
</section>
<section id="showcase">
<h2>My Showcase</h2>
<div class="showcase-card">
<h3>Kid's Rhyme book</h3>
<img src="icons/project1.webp" alt="Poet Book Cover">
<a href="images/project1.webp" target="_blank" class="view-pdf-btn">View </a>
</div>
<div class="showcase-card">
<h3>Poetry Book Cover</h3>
<img src="icons/project2.webp" alt="Poet Book Cover">
<a href="images/project2.webp" target="_blank" class="view-pdf-btn">View </a>
</div>
<div class="showcase-card">
<h3>Kid's Rhyme Book Cover</h3>
<img src="icons/project3.webp" alt="Poet Book Cover">
<a href="images/project3.webp" target="_blank" class="view-pdf-btn">View </a>
</div>
<div class="showcase-card">
<h3>Concert Poster</h3>
<img src="icons/project4.webp" alt="Poet Book Cover">
<a href="images/project4.webp" target="_blank" class="view-pdf-btn">View </a>
</div>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>You can reach me at:</p>
<ul>
<li>Email: [email protected]</li>
<li>Phone: +91-7044664836</li>
</ul>
<div class="logo-container">
<a href="https://www.linkedin.com/in/protap-dutta/" target="_blank">
<img src="images/linkdein.png" alt="LinkedIn" class="logo">
</a>
<a href="https://github.com/CaptainProx21/" target="_blank">
<img src="images/github.webp" alt="Github" class="logo">
</a>
</div>
</section>
</main>
<a href="#top" id="scrollToTopBtn">↑</a>
<footer>
<p>© 2024 Prox21</p>
</footer>
</body></html>