forked from hari7261/First-OpenSource-Contribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 2.02 KB
/
index.html
File metadata and controls
75 lines (75 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: #333;
color: white;
padding: 20px;
text-align: center;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
}
.section {
background: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
footer {
text-align: center;
padding: 10px;
background: #333;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
</header>
<div class="container">
<div class="section">
<h2>About Me</h2>
<p>Welcome to my portfolio! I am a web developer passionate about creating stunning and functional websites.</p>
</div>
<div class="section">
<h2>Projects</h2>
<ul>
<li>Project 1 - <a href="#">View</a></li>
<li>Project 2 - <a href="#">View</a></li>
<li>Project 3 - <a href="#">View</a></li>
</ul>
</div>
<div class="section">
<h2>Skills</h2>
<p>HTML, CSS, JavaScript, Django, React, PHP, MySQL</p>
</div>
<div class="section">
<h2>Contact</h2>
<p>Email: your.email@example.com</p>
</div>
</div>
<footer>
<p>© 2025 My Portfolio. All Rights Reserved.</p>
</footer>
</body>
</html>