-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (127 loc) · 3.64 KB
/
Copy pathindex.html
File metadata and controls
139 lines (127 loc) · 3.64 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nazim BERKANE — Software Engineer</title>
<style>
:root {
--bg: #0f1117;
--card: #171a23;
--text: #e6e6e6;
--muted: #9aa0ab;
--accent: #5b8cff;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
header {
max-width: 720px;
margin: 0 auto;
padding: 80px 24px 40px;
text-align: center;
}
header h1 { font-size: 2.2rem; margin-bottom: 4px; }
header p.role { color: var(--accent); font-weight: 500; margin-top: 0; }
header p.bio { color: var(--muted); max-width: 480px; margin: 16px auto 0; }
.links { margin-top: 20px; }
.links a {
color: var(--text);
text-decoration: none;
border: 1px solid #333;
padding: 8px 16px;
border-radius: 6px;
margin: 0 6px;
display: inline-block;
font-size: 0.9rem;
}
.links a:hover { border-color: var(--accent); color: var(--accent); }
main { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
section { margin-bottom: 48px; }
h2 {
font-size: 1.1rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--muted);
margin-bottom: 20px;
}
.project {
background: var(--card);
border-radius: 10px;
padding: 20px 24px;
margin-bottom: 16px;
border: 1px solid #232733;
}
.project h3 { margin: 0 0 6px; font-size: 1.05rem; }
.project p { color: var(--muted); margin: 0 0 10px; font-size: 0.95rem; }
.project a { color: var(--accent); font-size: 0.9rem; text-decoration: none; }
.project a:hover { text-decoration: underline; }
.skills { display: flex; flex-wrap: wrap; gap: 8px; }
.skills span {
background: var(--card);
border: 1px solid #232733;
padding: 6px 12px;
border-radius: 20px;
font-size: 0.85rem;
color: var(--muted);
}
footer {
text-align: center;
color: var(--muted);
font-size: 0.85rem;
padding: 24px;
}
</style>
</head>
<body>
<header>
<h1>Your Name</h1>
<p class="role">Software Engineer</p>
<p class="bio">Short one- or two-line bio about what you build, what you're into, or what you're looking for.</p>
<div class="links">
<a href="https://github.com/yourusername" target="_blank">GitHub</a>
<a href="https://linkedin.com/in/yourusername" target="_blank">LinkedIn</a>
<a href="mailto:you@email.com">Email</a>
</div>
</header>
<main>
<section>
<h2>Projects</h2>
<div class="project">
<h3>Project Name</h3>
<p>One or two sentences describing what it does and what you used to build it.</p>
<a href="https://github.com/yourusername/project" target="_blank">View on GitHub →</a>
</div>
<div class="project">
<h3>Project Name</h3>
<p>One or two sentences describing what it does and what you used to build it.</p>
<a href="https://github.com/yourusername/project" target="_blank">View on GitHub →</a>
</div>
<div class="project">
<h3>Project Name</h3>
<p>One or two sentences describing what it does and what you used to build it.</p>
<a href="https://github.com/yourusername/project" target="_blank">View on GitHub →</a>
</div>
</section>
<section>
<h2>Skills</h2>
<div class="skills">
<span>JavaScript</span>
<span>Python</span>
<span>React</span>
<span>Node.js</span>
<span>SQL</span>
<span>Git</span>
</div>
</section>
</main>
<footer>
© 2026 Your Name
</footer>
</body>
</html>