- ID de l'analyse :
- 68847437-0d26-4114-9335-cf0e642464c3Terminée
- URL soumise :
- https://protapdutta.github.io/Resume/
- Fin du rapport :
Liens : 2 trouvé(s)
Liens sortants identifiés à partir de la page
Lien | texte |
---|---|
https://www.linkedin.com/in/protap-dutta/ | |
https://github.com/CaptainProx21/ |
Variables JavaScript : 3 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Messages de journal de console : 1 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
warning | other |
|
HTML
Le corps HTML de la page en données brutes
<!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>