-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (70 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/styles/style.css">
<link rel="icon" type="image/x-icon" href="/assets/photos/profile.webp">
<title>Yadhukrishnan</title>
</head>
<body class="home">
<main>
<!-- Navigation Bar -->
<nav>
<div class="container">
<!-- Logo -->
<div class="logo">
<a href="/index.html">YadhuKrishnan</a>
</div>
<!-- Menu Toggle Button for Mobile View -->
<button class="menu-toggle" aria-label="Toggle menu">
<span class="menu-icon"></span>
<span class="menu-icon"></span>
<span class="menu-icon"></span>
</button>
<!-- Navigation Links -->
<ul class="nav-links">
<li><a href="index.html" style="color: #f39c12;">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="qualification.html">Qualification</a></li>
<li><a href="social.html">Socials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Main Section -->
<section class="home">
<div class="main_div">
<!-- Greetings Section -->
<div class="greetings">
<img class="profile_img" src="./assets/photos/profile.webp" alt="Profile Image">
<span class="round"></span>
<p>Hi, I'm<br>
<span class="name">YADHUKRISHNAN,</span><br>
Web Developer.</p>
<!-- Link to GitHub -->
<a href="https://github.com/yadhukrixh">
<button class="more" id="bttn">Click here</button>
</a>
<!-- Skills Section -->
<div id="skills" class="skills">
<h2>Skills</h2>
<ul>
<li>HTML<br><span class="html">90% Learned</span></li>
<li>CSS <br><span class="css">75% Learned</span></li>
<li>JS <br><span class="js">75% Learned</span></li>
</ul>
</div>
</div>
<!-- Unhidden Data Section -->
<div class="unhided_data">
<p>Hi, I am a fresher who is really passionate about development and designing. I am highly motivated to learn new skills and challenge myself with complex tasks. Skilled in HTML, CSS, and JavaScript, actively seeking opportunities to gain practical experience and contribute to real-world projects. Fast learner with excellent communication and collaboration skills.</p>
</div>
</div>
</section>
</main>
<!-- External JavaScript -->
<script src="./assets/scripts/navbar.js" defer></script>
</body>
</html>