-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
89 lines (85 loc) · 3.89 KB
/
project.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
<!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="stylesheet" href="./assets/styles/projects.css">
<link rel="icon" type="image/x-icon" href="./assets/photos/profile.webp">
<title>Projects</title>
</head>
<body class="projects_body">
<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">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project.html" style="color: #f39c12;">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>
<!-- Projects Section -->
<section class="projects">
<div class="projects_container">
<!-- Project Card 1 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/photos/project1.webp" alt="Portfolio project" class="project_img">
<p class="title text-stroke">Portfolio</p>
</div>
<div class="flip-card-back">
<p>This project is built using HTML, CSS, and JavaScript.</p>
<a href="#"><button class="project-visit">VISIT</button></a>
</div>
</div>
</div>
<!-- Project Card 2 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/photos/project2.webp" alt="Department Website project" class="project_img">
<p class="title text-stroke">Department Website</p>
</div>
<div class="flip-card-back">
<p>This project is built using HTML, CSS, and JavaScript.</p>
<a href="#"><button class="project-visit">VISIT</button></a>
</div>
</div>
</div>
<!-- Project Card 3 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/photos/project3.webp" alt="Login & SignUp form project" class="project_img">
<p class="title text-stroke">Login & SignUp Form</p>
</div>
<div class="flip-card-back">
<p>This project is built using the MERN stack to understand API functions.</p>
<a href="#"><button class="project-visit">VISIT</button></a>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- External JavaScript -->
<script src="./assets/scripts/navbar.js" defer></script>
</body>
</html>