Katsukii commited on
Commit
5ab509d
1 Parent(s): 407228a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +73 -18
index.html CHANGED
@@ -1,19 +1,74 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>Katsukii </title>
7
+ <link rel="stylesheet" href="../../styles.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
9
+ <link href="https://db.onlinewebfonts.com/c/84df7d9c4993a8f1aa0aa40fcb53c8b5?family=Azeret+Mono+Medium" rel="stylesheet">
10
+ <link href="https://db.onlinewebfonts.com/c/96d722be8231ee4778d745667de1c5ca?family=Bebas+Neue" rel="stylesheet">
11
+ </head>
12
+ <body>
13
+ <div class="background">
14
+ <header>
15
+ <nav>
16
+ <ul>
17
+ <li><a href="#about">About</a></li>
18
+ <li><a href="#Project">Project</a></li>
19
+ <li><a href="#contact">Contact</a></li>
20
+ </ul>
21
+ </nav>
22
+ </header>
23
+ <section id="hero">
24
+ <h1>Welcome to My Portfolio Project </h1>
25
+ <p>Katsuki Neko</p>
26
+ </section>
27
+
28
+ <section id="about">
29
+ <h2>About Me</h2>
30
+ <p>My name is Nguyen Phuong Minh Tan, and I am a high school student from Vietnam with a passion for technology and creativity. As a senior Python and web developer, I have honed my skills in creating efficient and innovative solutions. In addition to my programming expertise, I am a graphic designer, video editor, and colorist, bringing a unique blend of technical and artistic abilities to my projects. My diverse skill set allows me to approach challenges from multiple angles, ensuring high-quality and visually appealing outcomes. </p>
31
+ </section>
32
+
33
+ <div class="container">
34
+ <section id="Project">
35
+ <h2>My Work</h2>
36
+ <div>
37
+ <img src="../../IMG_4743.JPG" alt="Project 1"class="item">
38
+ <p>My design skill</p>
39
+ </div>
40
+ <div>
41
+ <img src="../../IMG_4744.PNG" alt="Project 2"class="item">
42
+ <p>Infographic</p>
43
+ </div>
44
+ <div>
45
+ <img src="../../IMG_4076.JPEG" alt="Project 3"class="item">
46
+ <p>My Color-grading skills</p>
47
+ </div>
48
+ </div>
49
+ <section id="contact">
50
+ <h2>Contact Me</h2>
51
+ <form id="contact-form">
52
+ <label for="name">Name</label>
53
+ <input type="text" id="name" name="name" required>
54
+ <label for="email">Email</label>
55
+ <input type="email" id="email" name="email" required>
56
+ <label for="message">Message</label>
57
+ <textarea id="message" name="message" required></textarea>
58
+ <button type="submit">Send</button>
59
+ </form>
60
+ </section>
61
+
62
+ <section id="dark-theme">
63
+ <label for="dark-theme">dark Theme</label>
64
+ <button type="button"></button>
65
+ </section>
66
+
67
+ <footer>
68
+ <p>&copy; 2024 Katsukii. All Rights Reserved.</p>
69
+ </footer>
70
+ <script
71
+ src="/scripts.js">
72
+ </script>
73
+ </body>
74
  </html>