-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoots
More file actions
87 lines (82 loc) · 1.81 KB
/
Copy pathRoots
File metadata and controls
87 lines (82 loc) · 1.81 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
76
77
78
79
80
81
82
83
84
85
86
87
<!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>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
}
header {
background: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
}
.hero {
padding: 100px 20px;
text-align: center;
background: linear-gradient(to right, #6a11cb, #2575fc);
color: white;
}
.hero h1 {
font-size: 3em;
}
.section {
padding: 40px 20px;
max-width: 900px;
margin: auto;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
<nav>
<a href="#">Home</a>
<a href="#">Projects</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<div class="hero">
<h1>Hello, I'm [Your Name]</h1>
<p>Web Developer | Designer | Freelancer</p>
</div>
<section class="section">
<h2>About Me</h2>
<p>I'm a passionate web developer building creative and responsive websites. I specialize in HTML, CSS, and Python (Flask).</p>
</section>
<section class="section">
<h2>Sample Projects</h2>
<ul>
<li>Class Project Website</li>
<li>Banking App UI with Flask</li>
<li>Personal Blog Template</li>
</ul>
</section>
<section class="section">
<h2>Contact</h2>
<p>Email: yourname@example.com</p>
<p>GitHub: github.com/yourusername</p>
</section>
<footer>
© 2025 Your Name. All rights reserved.
</footer>
</body>
</html>