0% found this document useful (0 votes)
6 views2 pages

Name: Shivam Kore ID: Vu2f2223038 Branch: AI&DS 3 Year: HTML Lang

This document is an HTML template for a personal portfolio webpage created by Shivam Kore, a 3rd-year AI&DS student. It includes a navigation bar, a brief description of the developer, a contact form, and a footer with contact information. The webpage utilizes Bootstrap for styling and layout.

Uploaded by

vu2f2223023
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views2 pages

Name: Shivam Kore ID: Vu2f2223038 Branch: AI&DS 3 Year: HTML Lang

This document is an HTML template for a personal portfolio webpage created by Shivam Kore, a 3rd-year AI&DS student. It includes a navigation bar, a brief description of the developer, a contact form, and a footer with contact information. The webpage utilizes Bootstrap for styling and layout.

Uploaded by

vu2f2223023
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

NAME : SHIVAM KORE

ID : Vu2f2223038
Branch: AI&DS 3rd year

<!DOCTYPE html>
<html lang="en">

<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/
bootstrap.min.css" rel="stylesheet">
<title>Bootstrap Webpage</title>
</head>

<body>
<!-- Navbar -->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand p-3" href="#">My Portfolio</a>
<div class="navbar-nav">
<a class="nav-link p-5" href="#">About Me</a>
</div>
</nav>

<div class="container">
<h1 class="text-center">Bootstrap Portfolio</h1>

<!-- Brief Description -->


<div class="text-center mb-4">
<p>Welcome to my portfolio! I'm a passionate developer with experience in
creating dynamic web applications.
Please fill out the form below to get in touch.</p>
</div>

<!-- Form -->


<form class="p-3">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter
your name">
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter
your email">
</div>
<button type="submit" class="btnbtn-primary">Submit</button>
</form>
</div>

<!-- Footer -->


<footer class="bg-light text-center p-3">
<p>&copy; 2024 My Portfolio | <a href="mailto:[email protected]">Contact
Me</a></p>
</footer>
</body>
</html>
OUTPUT :

You might also like