GarGerry commited on
Commit
d5cf11c
·
verified ·
1 Parent(s): 7a22c81

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +7 -125
index.html CHANGED
@@ -4,119 +4,7 @@
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Portfolio Saya</title>
7
- <style>
8
- /* General Styles */
9
- body {
10
- font-family: Arial, sans-serif;
11
- margin: 0;
12
- padding: 0;
13
- }
14
-
15
- header {
16
- background: #6a0dad;
17
- color: white;
18
- padding: 1rem 0;
19
- text-align: center;
20
- }
21
-
22
- header h1 {
23
- font-size: 1.8rem;
24
- }
25
-
26
- nav {
27
- margin-top: 1rem;
28
- }
29
-
30
- nav ul {
31
- display: flex;
32
- justify-content: center;
33
- list-style: none;
34
- padding: 0;
35
- margin: 0;
36
- }
37
-
38
- nav ul li {
39
- margin: 0 1rem;
40
- }
41
-
42
- nav ul li a {
43
- text-decoration: none;
44
- color: white;
45
- }
46
-
47
- main {
48
- padding: 1rem;
49
- }
50
-
51
- section {
52
- margin-bottom: 2rem;
53
- text-align: center;
54
- }
55
-
56
- section h2 {
57
- font-size: 1.5rem;
58
- margin-bottom: 1rem;
59
- color: #6a0dad;
60
- }
61
-
62
- #skills ul, #projects ul {
63
- list-style: none;
64
- padding: 0;
65
- }
66
-
67
- #skills ul li, #projects ul li {
68
- margin: 0.5rem 0;
69
- }
70
-
71
- form {
72
- max-width: 400px;
73
- margin: 0 auto;
74
- display: flex;
75
- flex-direction: column;
76
- gap: 1rem;
77
- }
78
-
79
- form input, form textarea {
80
- padding: 0.5rem;
81
- border: 1px solid #ccc;
82
- border-radius: 5px;
83
- }
84
-
85
- form button {
86
- background: #6a0dad;
87
- color: white;
88
- border: none;
89
- padding: 0.5rem;
90
- border-radius: 5px;
91
- cursor: pointer;
92
- }
93
-
94
- form button:hover {
95
- background: #530a85;
96
- }
97
-
98
- footer {
99
- text-align: center;
100
- padding: 1rem;
101
- background: #f8f8f8;
102
- }
103
-
104
- /* Responsive Styles */
105
- @media (max-width: 768px) {
106
- header h1 {
107
- font-size: 1.5rem;
108
- }
109
-
110
- nav ul {
111
- flex-direction: column;
112
- gap: 0.5rem;
113
- }
114
-
115
- section h2 {
116
- font-size: 1.2rem;
117
- }
118
- }
119
- </style>
120
  </head>
121
  <body>
122
  <header>
@@ -147,29 +35,23 @@
147
 
148
  <section id="projects">
149
  <h2>Projects</h2>
150
- <ul>
151
- <li>
152
- <strong>Sentiment Analysis</strong>: Web app untuk analisis sentimen dalam Bahasa Indonesia.
153
- </li>
154
- <li>
155
- <strong>Visualisasi Squad Sepak Bola</strong>: Tools untuk membuat formasi tim sepak bola dengan statistik pemain.
156
- </li>
157
- </ul>
158
  </section>
159
 
160
  <section id="contact">
161
  <h2>Contact</h2>
162
  <form>
163
- <input type="text" placeholder="Nama" required>
164
- <input type="email" placeholder="Email" required>
165
- <textarea placeholder="Pesan" rows="4" required></textarea>
166
  <button type="submit">Kirim</button>
167
  </form>
168
  </section>
169
  </main>
170
 
171
  <footer>
172
- &copy; 2025 [Nama Kamu]
173
  </footer>
174
  </body>
175
  </html>
 
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Portfolio Saya</title>
7
+ <link rel="stylesheet" href="style.css">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  </head>
9
  <body>
10
  <header>
 
35
 
36
  <section id="projects">
37
  <h2>Projects</h2>
38
+ <p><strong>Sentiment Analysis:</strong> Web app untuk analisis sentimen dalam Bahasa Indonesia.</p>
39
+ <p><strong>Visualisasi Squad Sepak Bola:</strong> Tools untuk membuat formasi tim sepak bola dengan statistik pemain.</p>
 
 
 
 
 
 
40
  </section>
41
 
42
  <section id="contact">
43
  <h2>Contact</h2>
44
  <form>
45
+ <input type="text" name="name" placeholder="Nama" required>
46
+ <input type="email" name="email" placeholder="Email" required>
47
+ <textarea name="message" placeholder="Pesan" required></textarea>
48
  <button type="submit">Kirim</button>
49
  </form>
50
  </section>
51
  </main>
52
 
53
  <footer>
54
+ <p>© 2025 [Nama Kamu]</p>
55
  </footer>
56
  </body>
57
  </html>