-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold_index.html
More file actions
133 lines (124 loc) · 2.52 KB
/
old_index.html
File metadata and controls
133 lines (124 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dark Portfolio</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #0d0d0d;
color: #e6e6e6;
}
header {
padding: 20px;
text-align: center;
background-color: #111;
border-bottom: 1px solid #333;
}
header h1 {
margin: 0;
font-size: 2.5rem;
color: #4da3ff;
}
nav {
text-align: center;
margin-top: 10px;
}
nav a {
color: #e6e6e6;
text-decoration: none;
margin: 0 15px;
font-size: 1.1rem;
transition: 0.3s;
}
nav a:hover {
color: #4da3ff;
}
.section {
max-width: 900px;
margin: 50px auto;
padding: 20px;
background-color: #1a1a1a;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
h2 {
color: #4da3ff;
margin-bottom: 10px;
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.project-card {
background-color: #262626;
padding: 20px;
border-radius: 10px;
transition: 0.3s;
}
.project-card:hover {
transform: translateY(-5px);
background-color: #2e2e2e;
}
.project-card h3 {
color: #4da3ff;
margin-top: 0;
}
footer {
text-align: center;
padding: 20px;
margin-top: 40px;
background-color: #111;
border-top: 1px solid #333;
color: #999;
}
</style>
</head>
<body>
<body>
<header>
<h1>Cuthbert Baines</h1>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about" class="section">
<h2>About Me</h2>
<p>
My name is Cuthbert Baines, I have recently completed my degree in computing at Sheffield Hallam University.
I am currently looking forward to getting a proper job somewhere in the IT sector. I'm open minded about what
kind of job I do in the IT sector.
</p>
</section>
<section id="projects" class="section">
<h2>Projects</h2>
<div class="projects">
<div class="project-card">
<h3>Project One</h3>
<p>A simple project showcasing my HTML and CSS skills.</p>
</div>
<div class="project-card">
<h3>Project Two</h3>
<p>An interactive JavaScript web app with responsive design.</p>
</div>
<div class="project-card">
<h3>Project Three</h3>
<p>A data visualization dashboard using charts and APIs.</p>
</div>
</div>
</section>
<section id="contact" class="section">
<h2>Contact</h2>
<p>You can reach me at <strong>email@example.com</strong>.</p>
</section>
<footer>
<p>© 2025 John Doe</p>
</footer>
</body>
</html>