-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
145 lines (136 loc) · 6.83 KB
/
Copy pathproject.html
File metadata and controls
145 lines (136 loc) · 6.83 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project</title>
<link rel="stylesheet" href="styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" />
</head>
<body>
<header>
<div class="logo">
<a class="highlight" href="https://github.com/youweb3" target="_blank">youweb3</a>Portfolio
</div>
<nav class="navbar">
<ul class="nav-links" id="navLinks">
<li><a href="./index.html">Home</a></li>
<li><a href="./project.html">Project</a></li>
<li><a href="./service.html">Service</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<main>
<section id="project" class="project">
<div class="container">
<h2 class="section-title">My Projects</h2>
<p class="section-description">
Here are some of the projects I've worked on. Each one represents a
unique challenge and showcases different aspects of my development
skills.
</p>
<div class="projects-grid">
<!-- Movie App -->
<div class="project-card">
<a href="https://movie-review-show.netlify.app/" target="_blank" rel="noopener noreferrer">
<img src="https://static0.makeuseofimages.com/wordpress/wp-content/uploads/2022/05/next-movie-apps.jpg"
alt="React-app" class="project-image" />
</a>
<div class="project-content">
<div class="project-header">
<a href="https://movie-review-show.netlify.app/" target="_blank"
rel="noopener noreferrer">
<h4>Movie App</h4>
</a>
<a href="https://github.com/youweb3/Movie-Review-show/tree/main/Movie-show-app"
target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i>
<span class="project-category">Github Source</span>
</a>
</div>
<p>
A modern movie search app built with React and API
integration.
</p>
<div class="project-tags">
<span class="project-tag">React + vite</span>
<span class="project-tag">API</span>
<span class="project-tag">CSS</span>
</div>
</div>
</div>
<!-- To-do list -->
<div class="project-card">
<a href="https://todolist-task-management.netlify.app/" target="_blank"
rel="noopener noreferrer">
<img src="https://imageio.forbes.com/specials-images/dam/imageserve/1092571024/960x0.jpg?height=474&width=711&fit=bounds"
alt="To-do list" class="project-image" />
</a>
<div class="project-content">
<div class="project-header">
<a href="https://todolist-task-management.netlify.app/" target="_blank"
rel="noopener noreferrer">
<h4>TO-DO List App</h4>
</a>
<a href="https://github.com/youweb3/Todo-List" target="_blank"
rel="noopener noreferrer"><i class="fab fa-github"></i>
<span class="project-category">Github Source</span>
</a>
</div>
<p>
A simple, task management app featuring Light/Dark mode toggle.
Users can add, edit and delete tasks, with data persistently stored using Local Storage.
</p>
<div class="project-tags">
<span class="project-tag">JavaScript</span>
<span class="project-tag">HTML</span>
<span class="project-tag">CSS</span>
<span class="project-tag">Local Storage</span>
<span class="project-tag">DOM Manipulation</span>
<span class="project-tag">Light/Dark Mode</span>
<span class="project-tag">UX Design</span>
</div>
</div>
</div>
<!-- Coming Soon -->
<div class="project-card coming-soon">
<div class="project-content">
<div class="coming-icon">🚧</div>
<h4>More Projects Coming Soon...</h4>
<p>Stay tuned for my next creations!</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="contact-info">
<p>
Email:
<a href="mailto:yousef.shaikhan@gmail.com">yousef.shaikhan@gmail.com</a>
</p>
</div>
<div class="media-icons">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com/youweb3" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
</div>
<div class="copy-right">
<p>© 2025 Yousef Shaikhan. All rights reserved</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>