-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
24 lines (19 loc) · 778 Bytes
/
Copy pathindex.php
File metadata and controls
24 lines (19 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php include('includes/header.php'); ?>
<div class="container">
<section class="hero text-center my-5">
<h1>Welcome to Vijay Yadav's Portfolio</h1>
<p class="lead">ECE Student | Cybersecurity Enthusiast | Software Developer</p>
</section>
<section class="about text-center">
<a href="about.php" class="btn btn-primary">Learn More About Me</a>
</section>
<section class="projects text-center my-5">
<h2>My Projects</h2>
<a href="projects.php" class="btn btn-primary">View Projects</a>
</section>
<section class="contact text-center my-5">
<h2>Contact Me</h2>
<a href="contact.php" class="btn btn-primary">Get In Touch</a>
</section>
</div>
<?php include('includes/footer.php'); ?>