-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFullStackProjects.html
More file actions
96 lines (85 loc) · 3.67 KB
/
FullStackProjects.html
File metadata and controls
96 lines (85 loc) · 3.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Full Stack Projects - Aditya Singh</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Full stack web development projects by Aditya Singh, combining frontend and backend skills.">
<meta name="author" content="Aditya Singh">
<meta name="keywords" content="Aditya Singh, Web Developer, MCA, HTML, CSS, JavaScript, MongoDB, React, Express.js">
<link rel="shortcut icon" href="./favicon.png" type="image/png" />
<meta name="google-site-verification" content="6K9UC-LI1BFQ91I-R5DXQM5aRKRTRUfBQq5s2nf_7vQ" />
<link rel="stylesheet" href="./css/Global.css" />
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/Footer.css" />
<!-- Icons 1 -->
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
<!-- Icons 2 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<style>
.development {
display: flex;
justify-content: center;
align-items: center;
width: 80vw;
height: 80vh;
}
</style>
</head>
<body>
<header class="header">
<a href="index.html" class="logo">SinghAditya</a>
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="index.html#about">About</a>
<a href="index.html#project" class="active">Projects</a>
<a href="index.html#contact">Contact</a>
</nav>
</header>
<section class="projects-page" id="project1">
<div class="projects-header">
<h1 class="development">The page is under-development.....Kindly wait for latest version updates.....<br>✌️</h1>
</div>
</section>
<footer class="portfolio-footer">
<div class="footer-content">
<div class="footer-logo">
<img src="./assets/file.svg" alt="Your Portfolio Logo" class="logo-img">
<p class="tagline">Creating digital experiences that matter</p>
</div>
<div class="footer-links">
<div class="links-column">
<h3>Connect</h3>
<ul>
<li><a href="mailto:adityasunilsingh1335@gmail.com"><i class='bx bx-envelope'></i> Email</a></li>
<li><a href="https://www.linkedin.com/in/aditya-singh-b06158258/" target="_blank"><i class='bx bxl-linkedin-square'></i> LinkedIn</a></li>
<li><a href="https://github.com/aadi1335" target="_blank"><i class='bx bxl-github'></i> GitHub</a></li>
<li><a href="https://dribbble.com/yourprofile" target="_blank"><i class='bx bxl-dribbble'></i> Dribbble</a></li>
</ul>
</div>
<div class="links-column">
<div class="count">
<span>Visitor Count: <span id="visitor-count">0</span></span>
</div>
<div class="go-to-top">
<button><a href="#project1">⬆️ Scroll-On-Top</a></button>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© <span id="year"></span> Aditya sigh. All rights reserved.</p>
<p class="credit">Developed by Aditya Singh✌️</p>
</div>
</footer>
<script src="./javascript/script.js"></script>
<script type="module" src="./javascript/dbHandler.js"></script>
<script>
AOS.init();
</script>
</body>
</html>