Skip to content

Commit 1b783bb

Browse files
committed
Initial commit
0 parents  commit 1b783bb

File tree

4 files changed

+91
-0
lines changed

4 files changed

+91
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

css/style.css

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
/* Reset */
2+
* {
3+
margin: 0;
4+
padding: 0;
5+
box-sizing: border-box;
6+
}
7+
8+
body {
9+
font-family: sans-serif;
10+
line-height: 1.6;
11+
background: #d9ead3;
12+
color: #333;
13+
padding: 0 1rem;
14+
}
15+
16+
/* Page container */
17+
.container {
18+
max-width: 800px;
19+
margin: 0 auto;
20+
}
21+
22+
/* Header and nav */
23+
header {
24+
background: #d9ead3;
25+
color: #ff9900;
26+
padding: 1rem 0;
27+
}
28+
29+
nav {
30+
display: flex;
31+
gap: 2rem;
32+
padding-left: 1rem;
33+
}
34+
35+
nav a {
36+
color: #333;
37+
text-decoration: none;
38+
font-weight: bold;
39+
padding-bottom: 0.2rem;
40+
}
41+
42+
nav a.active {
43+
border-bottom: 2px solid #333;
44+
}
45+
46+
/* Main content */
47+
main {
48+
background: #d9ead3;
49+
padding: 2rem;
50+
margin-top: 1rem;
51+
border-radius: 8px;
52+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
53+
}
54+
55+
/* Footer */
56+
footer {
57+
text-align: center;
58+
padding: 1rem 0;
59+
margin-top: 2rem;
60+
color: #777;
61+
}

index.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<title>Home</title>
7+
<link rel="stylesheet" href="css/style.css" />
8+
</head>
9+
<body>
10+
<div class="container">
11+
<header>
12+
<nav>
13+
<a href="index.html" class="active">Home</a>
14+
</nav>
15+
</header>
16+
17+
<main>
18+
19+
<p>Hi there. I'm Dan. I do deep complex strategy and policy for companies on all sides of the music industry, from PROs, to labels, to tech startups.</p>
20+
<br></br>
21+
<p>You can take a look at <a href="https://danfowler.substack.com/" target="_blank" rel="noopener">my writing</a> to get an idea of the kinds of things that I find interesting.</p>
22+
<br></br>
23+
<p>If you want to chat about some work that you think I could help you with then feel free to reach out at dan@ this site's url.</p>
24+
<br></br>
25+
<pr>Cheers!</pr>
26+
</main>
27+
28+
29+
</body>
30+
</html>

js/script.js

Whitespace-only changes.

0 commit comments

Comments
 (0)