Skip to content

Commit 5761da1

Browse files
menambahkan
1 parent adb57ff commit 5761da1

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Personal Branding</title>
7-
<link rel="stylesheet" href="style.css">
7+
<link rel="stylesheet" href="styles.css">
88
</head>
99
<body>
1010
<header>

styles.css

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
margin: 0;
4+
padding: 0;
5+
background-color: #f4f4f4;
6+
color: #333;
7+
text-align: center;
8+
}
9+
header {
10+
background: linear-gradient(90deg, #ff7e5f, #feb47b);
11+
padding: 50px;
12+
color: white;
13+
}
14+
h1 {
15+
margin: 0;
16+
font-size: 2.5em;
17+
}
18+
section {
19+
padding: 50px;
20+
margin: 20px;
21+
background: white;
22+
border-radius: 10px;
23+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
24+
}
25+
.portfolio-items {
26+
display: flex;
27+
justify-content: center;
28+
gap: 20px;
29+
}
30+
.item {
31+
background: #ff7e5f;
32+
padding: 20px;
33+
border-radius: 10px;
34+
color: white;
35+
font-weight: bold;
36+
transition: transform 0.3s;
37+
}
38+
.item:hover {
39+
transform: scale(1.1);
40+
}
41+
.social-links a {
42+
display: inline-block;
43+
margin: 10px;
44+
text-decoration: none;
45+
background: #feb47b;
46+
padding: 10px 20px;
47+
border-radius: 5px;
48+
color: white;
49+
transition: background 0.3s;
50+
}
51+
.social-links a:hover {
52+
background: #ff7e5f;
53+
}

0 commit comments

Comments
 (0)