Le voyage de Leul – Telegram
Le voyage de Leul
81 subscribers
113 photos
20 videos
9 files
95 links
Welcome to CodeSphere Hub 🌐👨‍💻👩‍💻! Connect, collaborate, and innovate with developers worldwide.
Download Telegram
Hey 👋 guys
I was trying to train myself creating an app using sketchware pro but it keeps giving me this error.
Any body who can solve?
🚀. 5 Steps to learn Full Stack Web Development:

1. 📚 Begin with Basics:
   - Start with the essentials: Learn HTML , CSS 🎨, and JavaScript 🧪 as the building blocks.

2. 🖼️ Front-End Development:
   - Dive into front-end magic with a JavaScript framework like React ⚛️, Angular 🅰️, or Vue.js 🖖. Craft beautiful user interfaces.

3.Back-End Development:
   - Venture into the server-side realm by picking a language (e.g., Node.js, Python 🐍, Ruby ) and its associated framework.

4. 🗄️ Databases and Data Management:
   - Explore the world of databases (MySQL 🐬, PostgreSQL 🐘, MongoDB ) to store and retrieve data efficiently.

5. Full-Stack Integration:
   - Unite your powers! Combine front-end and back-end skills to create full-fledged web applications
🚀 7 Steps to Master Frontend Development:

🔰 🔰 🔰

1. Lay Your Foundation:
Start with HTML, CSS, and JavaScript—the essential building blocks of the web.

2. Responsive Design: ✍️
Master Flexbox, CSS Grid, and mobile-first design to ensure your sites look great on any device.

3. Modern Frameworks:
Dive into dynamic UI libraries like React ⚛️, Angular 🅰️, or Vue.js 🖖 for interactive experiences.

4. CSS Enhancements: 🔰
Explore preprocessors like Sass/SCSS and frameworks like Tailwind CSS for efficient and scalable styling.

5. Tooling & Workflow:
Get comfortable with Git for version control and bundlers like Webpack to streamline your development process.

6. Performance & Accessibility: 🚀
Optimize loading times and ensure your websites are accessible to all users.

7. Practice & Portfolio: 💡
Build projects, experiment with new techniques, and showcase your skills in a personal portfolio.

Ready to create amazing web experiences? Start coding today!
I got this website, that will teach you HTML, CSS & Js for free with free certificate

https://coursevania.com/courses/web-development-for-beginners-html-css-javanoscript/
📢 Exciting Announcement! 🚀

I’m thrilled to introduce Englify – a brand-new dictionary website designed to make learning English easier and more accessible! 📖

With Englify, you can:
Find quick and accurate word definitions
Enhance your vocabulary effortlessly
Enjoy a smooth and user-friendly experience

Check it out now and level up your English skills! 🌟

🔗 Demo
🔗 Repo

Let me know what you think! Your feedback is always welcome. 🚀💡

#Englify #Dictionary #LearnEnglish
🔥1
💥Here we go again, I did it 💥

🚀 NASA News Hub is finally live.



🌍 Overview

NASA News Hub is a web application that brings you the latest news and developments from NASA. Whether you're a space enthusiast, a student, or just curious about the universe, our platform keeps you informed with real-time updates! 🛰️🔭

Features

Latest NASA News – Stay updated with the most recent articles and space discoveries.
Search Functionality – Find news articles quickly using keywords or topics.
Responsive Design – Works seamlessly on desktops, tablets, and mobile devices.
API Integration – Fetches real-time data from NASA's official APIs.

🛠 Technologies Used

🌐 Frontend: HTML, CSS, JavaScript


🔗 API: NASA's Open APIs for live news updates

Hosting: Deployed on Vercel for speed and reliability


🚀 Getting Started

To run this project locally, follow these steps:

1️⃣ Clone the repository:

git clone https://github.com/akl-leul/nasa-news-.git


🌍 Live Website

We’d love to hear your feedback! 🚀🌎


👉https://nasa-news-pearl.vercel.app/
🔥2
Success is the sum of small efforts, repeated day in and day out.

– Robert Collier
Le voyage de Leul
https://nasa-news-pearl.vercel.app/
🎉I made new updates for this.

Now any user can send direct message to my email.

Wanna have a try?

Https://nasa-news-pearl.vercel.app/contact.html
I have been trying to create these projects. And I want to share you the code, so choose one of them and I will post the whole code here.
Final Results
43%
Note taking and To do list
14%
Tic tac too game
43%
Memory game
Note taking website
Tic tac too game
Memory Game
Le voyage de Leul
I have been trying to create these projects. And I want to share you the code, so choose one of them and I will post the whole code here.
Note taking and memory game websites were chosen. So I have to choose one.

I think many people want the note taking one. So I will send it now.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<noscript>To-Do & Notes App</noscript>
</head>
<body>
<div class="container">
<h1>To-Do & Notes</h1>

<button class="btn-dark-mode" onclick="toggleDarkMode()">🌙/🌞</button>

<div>
<h2>To-Do List</h2>
<input type="text" id="todo-input" placeholder="Add a new task">
<button class="btn-add" onclick="addTodo()">Add</button>
<ul id="todo-list"></ul>
</div>

<div>
<h2>Notes</h2>
<input type="text" id="note-noscript" placeholder="Title" required>
<textarea id="note-content" placeholder="Write your note here..." required ></textarea>
<button class="btn-add" onclick="saveNote()">Save Note</button>
<div id="notes-container"></div>
</div>
</div>

<div class="modal-overlay" onclick="closeModal()"></div>
<div class="modal" id="modal">
<h3 id="modal-noscript"></h3>
<p id="modal-content"></p>
<button onclick="closeModal()">Close</button>
</div>
</body>
</html>
👍1