-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (44 loc) · 1.29 KB
/
index.php
File metadata and controls
55 lines (44 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Chhaya Internship Projects</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f8f9fa;
}
.project-card {
max-width: 600px;
margin: auto;
margin-top: 50px;
padding: 40px;
border-radius: 15px;
}
h2 {
margin-top: 25px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="card shadow-lg project-card">
<div class="card-body">
<h2>PHP Project</h2>
<a href="/contact.php" target="_blank" class="btn btn-dark">
View PHP Contact Form API Project
</a>
<h2>Power BI Project</h2>
<a href="/projects/powerbi dashboard.pdf" target="_blank" class="btn btn-primary me-2">
View Dashboard
</a>
<a href="/projects/PowerBi Project.pbix" download class="btn btn-success">
Download PBIX
</a>
</div>
</div>
</div>
</body>
</html>