-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (115 loc) · 4.77 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MugenYume</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
</head>
<body>
<div id="loading-screen">
<div class="loader"></div> <!-- Loading animation -->
<p>Loading...</p>
</div>
<canvas class="background"></canvas> <!-- Neural network background -->
<header id="header">
<div class="header-content">
<h1>MugenYume</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<h2 class="title pulsate">About Me</h2>
<p id="about-text"></p> <!-- Typing effect will be applied here -->
</section>
<section id="skills" class="pulsate">
<h2 class="title pulsate">Skills</h2>
<div class="skills-container">
<div class="skill-card">
<img src="https://img.icons8.com/color/48/000000/html-5.png" alt="HTML" />
<p>HTML</p>
</div>
<div class="skill-card">
<img src="https://img.icons8.com/color/48/000000/css3.png" alt="CSS" />
<p>CSS</p>
</div>
<div class="skill-card">
<img src="https://img.icons8.com/color/48/000000/javascript.png" alt="JavaScript" />
<p>JavaScript</p>
</div>
<div class="skill-card">
<img src="https://img.icons8.com/color/48/000000/react-native.png" alt="React" />
<p>React</p>
</div>
<div class="skill-card">
<img src="https://img.icons8.com/color/48/000000/nodejs.png" alt="Node.js" />
<p>Node.js</p>
</div>
<div class="skill-card">
<img src="https://img.icons8.com/color/48/000000/python.png" alt="Python" />
<p>Python</p>
</div>
</div>
</section>
<section id="projects">
<h2 class="title pulsate">Projects</h2>
<div class="projects-container">
<div class="project">
<div class="project-content">
<div class="project-front">
<img src="images/calculator.jpg" alt="Project 1">
</div>
<div class="project-back">
<h3>Calculator</h3>
<p>Check out one of my favourite calcualtor design.</p>
<a href="projects/calculator/calculator.html" class="project-link">View Project</a> <!-- Link to the project -->
</div>
</div>
</div>
<div class="project">
<div class="project-content">
<div class="project-front">
<img src="images/blog.jpg" alt="Project 2">
</div>
<div class="project-back">
<h3>BLOG</h3>
<p>Blog based on health and exercise.</p>
<a href="projects/blog/homepage.html" class="project-link">View Project</a> <!-- Link to the project -->
</div>
</div>
</div>
</div>
</section>
<section id="contact" >
<h2 class="title pulsate">Contact</h2>
<form action="https://formspree.io/f/movajynb" method="POST"> <!-- Replace {your_form_id} with your actual Formspree ID -->
<div class="form-group">
<label for="name" class="pulsate">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email" class="pulsate">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message" class="pulsate">Message:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit" class="submit-button pulsatee">Send</button>
</form>
</section>
<footer id="footer">
<p>© 2024 MugenYume</p>
</footer>
<button id="back-to-top">↑</button>
<script src="script.js"></script>
</body>
</html>