File size: 980 Bytes
2321077
 
 
 
 
 
 
 
 
 
58b4eb4
 
 
 
2321077
58b4eb4
 
 
 
 
 
 
 
2321077
 
 
 
 
 
 
 
 
 
 
 
c5f7446
58b4eb4
2321077
 
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
<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width" />
		<title>My Projects</title>
		<link rel="stylesheet" href="style.css" />
		<style>
			.project {
				margin: 20px 0;
				padding: 24px;
				border: 1px solid #e2e8f0;
				border-radius: 12px;
				background: #f8fafc;
			}
			.project h2 {
				color: #1e293b;
				margin-bottom: 12px;
			}
			.project p {
				color: #475569;
			}
</style>
	</head>
	<body>
		<div class="card">
			<h1>My Projects</h1>
			<div class="project">
				<h2>Project 1</h2>
				<p>Description of my first project.</p>
			</div>
			<div class="project">
				<h2>Project 2</h2>
				<p>Description of my second project.</p>
			</div>
			<a href="index.html" style="display: inline-block; margin-top: 20px; padding: 12px 24px; background: #2563eb; color: #f8fafc; border-radius: 12px; text-decoration: none; font-weight: 600; border: 2px solid #1e40af;">Back to Home</a>
</div>
	</body>
</html>