-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImran.html
More file actions
69 lines (64 loc) · 1.31 KB
/
Copy pathImran.html
File metadata and controls
69 lines (64 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Imran Umar- Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: #f4f4f4;
}
header, footer {
background: #333;
color: white;
text-align: center;
padding: 1em;
}
.container {
padding: 20px;
max-width: 800px;
margin: auto;
background: white;
}
h1, h2 {
color: #333;
}
nav a {
color: white;
margin: 0 10px;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Imran Umar</h1>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<div class="container">
<section id="about">
<h2>About Me</h2>
<p>.................................................</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p>..............</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>imranumarmohammed@gmail..com</p>
</section>
</div>
<footer>
<p>© 2025 imranumarmohammed</p>
</footer>
</body>
</html>