diff --git a/ProjectHtmlCss/ProjectHtmlCss/__init__.py b/ProjectHtmlCss/ProjectHtmlCss/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ProjectHtmlCss/ProjectHtmlCss/asgi.py b/ProjectHtmlCss/ProjectHtmlCss/asgi.py
new file mode 100644
index 0000000..f1d6488
--- /dev/null
+++ b/ProjectHtmlCss/ProjectHtmlCss/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for ProjectHtmlCss project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ProjectHtmlCss.settings')
+
+application = get_asgi_application()
diff --git a/ProjectHtmlCss/ProjectHtmlCss/settings.py b/ProjectHtmlCss/ProjectHtmlCss/settings.py
new file mode 100644
index 0000000..f9d0869
--- /dev/null
+++ b/ProjectHtmlCss/ProjectHtmlCss/settings.py
@@ -0,0 +1,126 @@
+"""
+Django settings for ProjectHtmlCss project.
+
+Generated by 'django-admin startproject' using Django 5.1.2.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/5.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/5.1/ref/settings/
+"""
+
+from pathlib import Path
+
+# Build paths inside the project like this: BASE_DIR / 'subdir'.
+BASE_DIR = Path(__file__).resolve().parent.parent
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'django-insecure-k*)442iu)@v_4u_4!-qnuc7!oht)4@m50h@^y-*xpm4(_p=l6('
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'app_HC',
+
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'ProjectHtmlCss.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'ProjectHtmlCss.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/5.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': BASE_DIR / 'db.sqlite3',
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/5.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/5.1/howto/static-files/
+
+STATIC_URL = 'static/'
+STATICFILES_DIRS = [BASE_DIR / "static"]
+
+# Default primary key field type
+# https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field
+
+DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
diff --git a/ProjectHtmlCss/ProjectHtmlCss/urls.py b/ProjectHtmlCss/ProjectHtmlCss/urls.py
new file mode 100644
index 0000000..371a602
--- /dev/null
+++ b/ProjectHtmlCss/ProjectHtmlCss/urls.py
@@ -0,0 +1,24 @@
+"""
+URL configuration for ProjectHtmlCss project.
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/5.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('', include('app_HC.urls')),
+
+]
diff --git a/ProjectHtmlCss/ProjectHtmlCss/wsgi.py b/ProjectHtmlCss/ProjectHtmlCss/wsgi.py
new file mode 100644
index 0000000..c946543
--- /dev/null
+++ b/ProjectHtmlCss/ProjectHtmlCss/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for ProjectHtmlCss project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ProjectHtmlCss.settings')
+
+application = get_wsgi_application()
diff --git a/ProjectHtmlCss/app_HC/__init__.py b/ProjectHtmlCss/app_HC/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ProjectHtmlCss/app_HC/admin.py b/ProjectHtmlCss/app_HC/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/ProjectHtmlCss/app_HC/apps.py b/ProjectHtmlCss/app_HC/apps.py
new file mode 100644
index 0000000..581349f
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class AppHcConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'app_HC'
diff --git a/ProjectHtmlCss/app_HC/migrations/__init__.py b/ProjectHtmlCss/app_HC/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ProjectHtmlCss/app_HC/models.py b/ProjectHtmlCss/app_HC/models.py
new file mode 100644
index 0000000..71a8362
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/ProjectHtmlCss/app_HC/static/css/article.css b/ProjectHtmlCss/app_HC/static/css/article.css
new file mode 100644
index 0000000..04d3afd
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/static/css/article.css
@@ -0,0 +1,24 @@
+body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+}
+header {
+ background-color: #333;
+ color: #fff;
+ padding: 1em;
+ text-align: center;
+}
+main {
+ padding: 1em;
+ max-width: 800px;
+ margin: auto;
+}
+
+footer {
+ text-align: center;
+ padding: 1em;
+ background-color: #333;
+ color: #fff;
+}
diff --git a/ProjectHtmlCss/app_HC/static/css/careers.css b/ProjectHtmlCss/app_HC/static/css/careers.css
new file mode 100644
index 0000000..67aa193
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/static/css/careers.css
@@ -0,0 +1,61 @@
+
+
+*{
+ font-family: 'Poppins',sans-serif;
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ scroll-behavior: smooth;
+}
+
+header{
+ background-color: #f0f0f0;
+ width: 100%;
+ position: fixed;
+ z-index: 999;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 10px 200px;
+}
+
+.logo{
+ text-decoration: none;
+ color: #3a6cf4;
+ text-transform: uppercase;
+ font-weight: 500;
+ font-size: 1.8em;
+}
+
+.navigation a{
+ text-decoration: none;
+ color: #3a6cf4;
+ text-transform: uppercase;
+ font-weight: 300;
+ font-size: 0.8em;
+ padding-left: 30px;
+}
+
+.navigation a:hover{
+ color: #601cfc;
+}
+
+section {
+ padding: 100px 200px;
+}
+
+.me {
+ width: 100%;
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ background-color: azure;
+
+}
+
+.me h2 {
+ color: #4e9eff;
+ font-size: 1.4em;
+ font-weight: 500;
+
+}
diff --git a/ProjectHtmlCss/app_HC/static/css/introduction.css b/ProjectHtmlCss/app_HC/static/css/introduction.css
new file mode 100644
index 0000000..f7efddb
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/static/css/introduction.css
@@ -0,0 +1,18 @@
+
+/* format to table */
+body{
+ background-color: #8b592b63; /* البني الخشبي */;
+}
+
+h1,h2,h3{
+ color: #8b592b; /* الأحمر القرمزي */;
+ text-align: left;
+
+
+}
+
+table, th, td {
+ width: 300px; border: 1px solid rgb(80, 80, 80); border-collapse: collapse;
+
+}
+
diff --git a/ProjectHtmlCss/app_HC/static/images/deep.png b/ProjectHtmlCss/app_HC/static/images/deep.png
new file mode 100644
index 0000000..0a72abc
Binary files /dev/null and b/ProjectHtmlCss/app_HC/static/images/deep.png differ
diff --git a/ProjectHtmlCss/app_HC/static/images/various.jpg b/ProjectHtmlCss/app_HC/static/images/various.jpg
new file mode 100644
index 0000000..7defc43
Binary files /dev/null and b/ProjectHtmlCss/app_HC/static/images/various.jpg differ
diff --git a/ProjectHtmlCss/app_HC/static/images/wagyou.jpg b/ProjectHtmlCss/app_HC/static/images/wagyou.jpg
new file mode 100644
index 0000000..257ad49
Binary files /dev/null and b/ProjectHtmlCss/app_HC/static/images/wagyou.jpg differ
diff --git a/ProjectHtmlCss/app_HC/templates/app_HC/article.html b/ProjectHtmlCss/app_HC/templates/app_HC/article.html
new file mode 100644
index 0000000..d63812b
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/templates/app_HC/article.html
@@ -0,0 +1,53 @@
+{% load static %}
+
+
+
+
+
+
+ Deep Learning
+
+
+
+
+
+
Deep Learning: Neural Networks and Processing Complex Data
+
+
+
+
Deep learning is a key area of artificial intelligence (AI), representing advanced techniques that enable machines to analyze and process vast amounts of data. Built upon artificial neural networks that simulate the workings of the human brain, deep learning has proven to be effective in diverse fields, such as image recognition, natural language processing, and financial forecasting.
+
+
+
+
+
What is Deep Learning?
+
Deep learning is a form of machine learning, aiming to empower machines to analyze data in advanced ways by creating multi-layered models known as deep neural networks. These networks are composed of multiple "hidden layers," allowing them to interpret data in complex ways.
+
How Do Deep Neural Networks Work?
+
Deep neural networks resemble the human brain, comprising small units called "nodes" or "neurons." These neurons are organized into multiple layers, including input layers, hidden layers, and output layers. As data moves through these layers, values are gradually adjusted to reach an accurate prediction or analysis.
+
When a dataset is fed into a neural network, the data is processed layer by layer, and the network learns to refine its responses gradually through a process known as “training.” This often involves “backpropagation” algorithms to adjust the weights of neurons and improve the network's accuracy.
+
Examples of Deep Learning Applications
+
Deep learning has shown exceptional performance in a wide range of real-life applications, including:
+
+
Image Recognition: Deep neural networks can recognize faces and distinguish between different objects in images, commonly used in smartphone apps and security systems.
+
Natural Language Processing (NLP): Deep learning enables machines to understand and analyze human language, powering tools like Google Translate and intelligent assistants such as Siri.
+
Medical Diagnosis: Neural networks can analyze medical images and assist in diagnoses, such as detecting tumors in radiology scans.
+
Autonomous Driving: Self-driving cars rely on deep learning to recognize their surroundings, interact with traffic signals, and determine safe paths.
+
+
Challenges in Deep Learning
+
Despite its successes, deep learning still faces several challenges, including:
+
+
Data Requirements: Deep learning models require vast amounts of data to learn effectively, which demands substantial resources.
+
Energy Consumption: Training deep models requires significant computational power and energy, which can be costly and environmentally impactful.
+
Bias in Data: Models can be affected by biases present in training data, leading to unfair or inaccurate results.
+
+
+
The Future of Deep Learning
+
Deep learning is evolving rapidly, and it is expected to play an even larger role in the future. Researchers are developing models that can learn with less data and provide faster, more accurate results. These advancements are anticipated to further improve sectors ranging from healthcare to finance and environmental sustainability.
+
In conclusion, deep learning represents one of the most powerful technologies driving the digital revolution. It grants machines unprecedented capabilities for "learning" and decision-making, offering a future filled with innovation and transformation across various aspects of life.
+
+
+
+
+
\ No newline at end of file
diff --git a/ProjectHtmlCss/app_HC/templates/app_HC/introduction.html b/ProjectHtmlCss/app_HC/templates/app_HC/introduction.html
new file mode 100644
index 0000000..5a83da9
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/templates/app_HC/introduction.html
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+ Japanese Restaurant
+
+
+
+
+
+
Welcom in Japanese Restaurant
+
+
Japanese Restaurant Description:
+
Located in a serene atmosphere that echoes Japanese culture,
+ this restaurant combines traditional elegance with modern simplicity.
+ It offers a wide selection of traditional and contemporary Japanese dishes,
+ made with the finest, freshest ingredients, including sushi, sashimi, ramen, teriyaki,
+ and premium Japanese Wagyu beef, renowned for its exceptional quality and rich flavor.
+
+
Guests can enjoy a unique experience with Japanese beef,
+ carefully prepared and served grilled or in traditional dishes that enhance its tenderness and savory taste.
+ Patrons can choose to sit at the sushi bar to witness the artistry
+ of food preparation or dine at traditional low tables for a more authentic experience.
+
+
Menu
+
+
Appetizers
+
Sushi & Sashimi
+
Main Courses
+
Specialties
+
Vegetarian Dishes
+
Desserts
+
Beverages
+
+
+
+
+
+ Our branches
+
+
+
City
+
location
+
+
+
Riyadh
+
AlOlaya Street
+
+
+
Jeddah
+
Main Street
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ProjectHtmlCss/app_HC/tests.py b/ProjectHtmlCss/app_HC/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/ProjectHtmlCss/app_HC/urls.py b/ProjectHtmlCss/app_HC/urls.py
new file mode 100644
index 0000000..94149e2
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/urls.py
@@ -0,0 +1,12 @@
+from django.urls import path
+from . import views
+
+app_name = 'app_HC'
+
+urlpatterns = [
+ path("", views.page_introduction, name="introduction"),
+ path("careers/cv/", views.page_careers, name="careers"),
+ path("article/cv/", views.page_article, name="article"),
+
+
+]
\ No newline at end of file
diff --git a/ProjectHtmlCss/app_HC/views.py b/ProjectHtmlCss/app_HC/views.py
new file mode 100644
index 0000000..3c028e8
--- /dev/null
+++ b/ProjectHtmlCss/app_HC/views.py
@@ -0,0 +1,13 @@
+from django.shortcuts import render
+from django.http import HttpRequest, HttpResponse
+
+# Create your views here.
+def page_introduction(request:HttpRequest):
+ return render(request,'app_HC/introduction.html')
+
+def page_careers(request:HttpRequest):
+ return render(request,'app_HC/careers.html')
+
+
+def page_article(request:HttpRequest):
+ return render(request,'app_HC/article.html')
\ No newline at end of file
diff --git a/ProjectHtmlCss/manage.py b/ProjectHtmlCss/manage.py
new file mode 100644
index 0000000..e8dbc53
--- /dev/null
+++ b/ProjectHtmlCss/manage.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ """Run administrative tasks."""
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ProjectHtmlCss.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()