-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject3.html
86 lines (71 loc) · 2.89 KB
/
project3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Siddharth Patel Portfolio</title>
<!-- box icons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- light/dark mode icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<!-- custom css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header design -->
<header class="header">
<a href="#" class="logo">SP</a>
<div class='bx bx-menu' id="menu-icon"></div>
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="index.html#about">About</a>
<a href="index.html#skill">Skills</a>
<a href="index.html#timeline-section">Professional History</a>
<a href="index.html#Projects">Projects</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
<div class="theme-switch">
<input type="checkbox" id="dark-mode-toggle">
<label for="dark-mode-toggle">
<i class="fas fa-sun"></i> <!-- Sun icon for light mode -->
<i class="fas fa-moon"></i> <!-- Moon icon for dark mode -->
<span class="slider round"></span>
</label>
</div>
</nav>
</header>
<section>
<article class="blog-post">
<header>
<h1>Portfolio Website</h1>
<p class="post-meta">Posted on [Date]</p>
</header>
<img src="images/portfolio3.jpg" alt="Featured Image" class="featured-image">
<section class="post-content">
<p>Your blog post content goes here. You can structure it with HTML as needed.</p>
<!-- Add more content as needed -->
</section>
</article>
</section>
<special-footer></special-footer>
<!-- footer design -->
<footer class="footer">
<div class="footer-text">
<p>Copyright © 2023 by Siddharth Patel | All Rights Reserved.</p>
<p>Hosted on AWS</p>
</div>
<div class="footer-iconTop">
<a href="#home"><i class='bx bx-up-arrow-alt'></i></a>
</div>
</footer>
<!-- contact section design -->
<section class="contact" id="contact">
<h3 class="heading">Contact Me! @<span>[email protected]</span></h2>
<!-- scroll reveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- typed js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!-- custom js -->
<script src="js/script.js"></script>
<special-footer></special-footer>
</html>