diff --git a/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/__init__.py b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/asgi.py b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/asgi.py
new file mode 100644
index 0000000..31c9823
--- /dev/null
+++ b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for CSSandHTMLlearningJourney 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', 'CSSandHTMLlearningJourney.settings')
+
+application = get_asgi_application()
diff --git a/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/settings.py b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/settings.py
new file mode 100644
index 0000000..b62bfe2
--- /dev/null
+++ b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/settings.py
@@ -0,0 +1,124 @@
+"""
+Django settings for CSSandHTMLlearningJourney 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-52ma9z49aq5-ymv94&c0yg()c9j(5k-l!6*1#+%!=0bz5ziqiq'
+
+# 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',
+ 'mini_projects',
+]
+
+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 = 'CSSandHTMLlearningJourney.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 = 'CSSandHTMLlearningJourney.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/'
+
+# 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/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/urls.py b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/urls.py
new file mode 100644
index 0000000..84d3406
--- /dev/null
+++ b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/urls.py
@@ -0,0 +1,23 @@
+"""
+URL configuration for CSSandHTMLlearningJourney 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('mini_projects.urls'))
+]
diff --git a/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/wsgi.py b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/wsgi.py
new file mode 100644
index 0000000..7d19e5a
--- /dev/null
+++ b/CSSandHTMLlearningJourney/CSSandHTMLlearningJourney/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for CSSandHTMLlearningJourney 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', 'CSSandHTMLlearningJourney.settings')
+
+application = get_wsgi_application()
diff --git a/CSSandHTMLlearningJourney/manage.py b/CSSandHTMLlearningJourney/manage.py
new file mode 100644
index 0000000..92fa458
--- /dev/null
+++ b/CSSandHTMLlearningJourney/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', 'CSSandHTMLlearningJourney.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()
diff --git a/CSSandHTMLlearningJourney/mini_projects/__init__.py b/CSSandHTMLlearningJourney/mini_projects/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/CSSandHTMLlearningJourney/mini_projects/admin.py b/CSSandHTMLlearningJourney/mini_projects/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/CSSandHTMLlearningJourney/mini_projects/apps.py b/CSSandHTMLlearningJourney/mini_projects/apps.py
new file mode 100644
index 0000000..0267d86
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class MiniProjectsConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'mini_projects'
diff --git a/CSSandHTMLlearningJourney/mini_projects/migrations/__init__.py b/CSSandHTMLlearningJourney/mini_projects/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/CSSandHTMLlearningJourney/mini_projects/models.py b/CSSandHTMLlearningJourney/mini_projects/models.py
new file mode 100644
index 0000000..71a8362
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/css/ai.css b/CSSandHTMLlearningJourney/mini_projects/static/css/ai.css
new file mode 100644
index 0000000..1f51d75
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/static/css/ai.css
@@ -0,0 +1,56 @@
+.full-screen {
+ height: 100vh;
+ width: 100%;
+ background-color: lightblue;
+}
+#introImage{
+ position: relative;
+}
+
+.top-left {
+ position: absolute;
+ top: 8px;
+ left: 16px;
+ }
+.centered{
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ font-size:80px;
+ transform: translate(-50%, -50%);
+ background-color: rgba(22, 25, 32, 0.654);
+ margin-top: 5px;
+ height: 50vh;
+}
+.card-header{
+ padding: 0%;
+ background-color: blueviolet;
+}
+
+.card-body{
+ background-color: #191834;
+ height: 40vh;
+ color: aliceblue;
+}
+
+.card-header img{
+ width: 100%;
+ height: 150px;
+ object-fit: cover;
+}
+
+video{
+ width: 100%;
+ height: auto;
+ max-width: 500px;
+
+ }
+
+.navbar{
+ background-color: #13122a;
+ }
+
+.footer{
+ width: 50%;
+ margin: 0 auto;
+}
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/css/css_page.css b/CSSandHTMLlearningJourney/mini_projects/static/css/css_page.css
new file mode 100644
index 0000000..3391538
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/static/css/css_page.css
@@ -0,0 +1,61 @@
+html{
+ font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
+
+}
+h1{
+ text-align: center;
+ font-style: oblique;
+ background: linear-gradient(to left,
+ #F2BC57,
+ #4AD97C,
+ #3BACD9,
+ #308AD9);
+-webkit-background-clip: text;
+color: transparent;
+
+}
+#poster{
+ width: 100%;
+ height:500px;
+ margin-left: 0px;
+ margin-right: 0px;
+ border-top: 1px solid #3BACD9 ;
+
+}
+#lists{
+ background-color: rgb(74, 217, 124,50%);
+}
+#imglink{
+ width: 50px;
+ height: 50px;
+}
+p {
+ color: #308AD9;
+}
+
+table{
+ background-color: rgb(59, 172, 217,50%);
+ width: 100%;
+ margin-left: 0px;
+ margin-right: 0px;
+ border:3px black dotted;
+}
+
+input,label,button,a{
+ display: block;
+}
+th,td{
+ text-align: center;
+ border-bottom:3px black dotted;
+ border-right:3px black dotted;
+}
+form{
+ background-color: rgb(242, 188, 87,50%);
+ display: block;
+}
+#top{
+ float: right;
+ background-color: #308AD9;
+ position:sticky;
+ bottom: 20px;
+}
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/css/cv.css b/CSSandHTMLlearningJourney/mini_projects/static/css/cv.css
new file mode 100644
index 0000000..e417e11
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/static/css/cv.css
@@ -0,0 +1,73 @@
+body, html {
+ height: 100%;
+ margin: 0;
+ font-family: 'Courier New';
+}
+
+.video-background {
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ width: auto;
+ height: auto;
+ z-index: -1; /* Keep the video behind other content */
+ transform: translate(-50%, -50%);
+}
+
+.content {
+ position: relative;
+ z-index: 1;
+ color: rgb(0, 0, 0);
+ text-align: left;
+ margin-top: 20vh;
+ padding: 20px;
+
+}
+
+.content table{
+ margin: 17% auto;
+ text-align: center;
+}
+
+.content td{
+ padding: 5vh;
+}
+.nav-link{
+ color: black;
+}
+.nav-link:hover{
+ text-decoration: underline;
+ color: rgb(166, 83, 0);
+}
+a{
+ color: black;
+ text-decoration: none;
+}
+a:visited{
+ color: black;
+}
+a:hover{
+ text-decoration: underline;
+ color: rgb(166, 83, 0);
+}
+
+nav {
+ display: flex;
+ align-items: center;
+}
+
+.nav {
+ margin-left: auto;
+}
+
+#logo {
+ transition: font-size 2s;
+ }
+
+ #logo:hover {
+ font-size: large;
+ }
+
+ #logo {
+ transition: font-size 2s;
+ }
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/ai_flower.jpg b/CSSandHTMLlearningJourney/mini_projects/static/images/ai_flower.jpg
new file mode 100644
index 0000000..539a21e
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/ai_flower.jpg differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/ethical.jpg b/CSSandHTMLlearningJourney/mini_projects/static/images/ethical.jpg
new file mode 100644
index 0000000..7dcc04c
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/ethical.jpg differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/glass_code.jpg b/CSSandHTMLlearningJourney/mini_projects/static/images/glass_code.jpg
new file mode 100644
index 0000000..106a042
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/glass_code.jpg differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/hobby.png b/CSSandHTMLlearningJourney/mini_projects/static/images/hobby.png
new file mode 100644
index 0000000..9e13081
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/hobby.png differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/hobbyTime.jpg b/CSSandHTMLlearningJourney/mini_projects/static/images/hobbyTime.jpg
new file mode 100644
index 0000000..10d9c61
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/hobbyTime.jpg differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/myProject.png b/CSSandHTMLlearningJourney/mini_projects/static/images/myProject.png
new file mode 100644
index 0000000..b724bbd
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/myProject.png differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/qyamuna.png b/CSSandHTMLlearningJourney/mini_projects/static/images/qyamuna.png
new file mode 100644
index 0000000..4585227
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/qyamuna.png differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/recommend.jpg b/CSSandHTMLlearningJourney/mini_projects/static/images/recommend.jpg
new file mode 100644
index 0000000..3ea8d26
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/recommend.jpg differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/images/solar.jpg b/CSSandHTMLlearningJourney/mini_projects/static/images/solar.jpg
new file mode 100644
index 0000000..2eb9f2e
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/images/solar.jpg differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/myCV.pdf b/CSSandHTMLlearningJourney/mini_projects/static/myCV.pdf
new file mode 100644
index 0000000..43e69e0
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/myCV.pdf differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/static/videos/background.mp4 b/CSSandHTMLlearningJourney/mini_projects/static/videos/background.mp4
new file mode 100644
index 0000000..8eb08d1
Binary files /dev/null and b/CSSandHTMLlearningJourney/mini_projects/static/videos/background.mp4 differ
diff --git a/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/ai.html b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/ai.html
new file mode 100644
index 0000000..31dcd5d
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/ai.html
@@ -0,0 +1,114 @@
+{%load static%}
+
+
+
+
+
+ AI Article
+
+
+
+
+
+
+
+
+
AI
+
The Impact of Artificial Intelligence on Modern Society
+
+
+
+
+
+
+
+
Applications of AI
+
AI technologies are now prevalent in numerous fields, making tasks easier and more efficient. Some notable applications include:
+
+
+ Healthcare: AI algorithms are used for diagnostic purposes, predicting diseases, and personalizing treatment plans. Machine learning models analyze medical data to assist doctors in making informed decisions.
+
+
+ Finance: In the financial sector, AI enhances risk assessment and fraud detection. Automated trading systems utilize algorithms to make real-time investment decisions based on market data.
+
+
+ Transportation: AI powers autonomous vehicles, optimizing routes, and improving safety through advanced sensor technologies and data analytics.
+
+
+
+
The integration of AI into these sectors demonstrates its versatility and potential to improve efficiency and accuracy.
+
+
+
+
+
+
Visualizing AI's Impact
+
+
+
+
+
AI has evolved significantly over the years, driven by advances in computing power and data availability. Early AI systems relied on rule-based programming, while modern approaches utilize deep learning and neural networks.
+
+
+
+
From voice-activated assistants like Siri and Alexa to recommendation systems on streaming platforms, AI has become an integral part of our daily routines. These technologies not only enhance convenience but also personalize user experiences.
+
+
+
+
+
Despite its benefits, AI also raises ethical concerns, including bias in algorithms, data privacy issues, and the potential for job displacement. Addressing these challenges is crucial for responsible AI development.
+
+
+
+
+
+
+
+
+
AI in Action
+
As we look to the future, AI will continue to evolve, promising even more
+ revolutionary changes. Emerging technologies like quantum
+ computing could enhance AI capabilities, leading to breakthroughs
+ in various fields. Collaboration between researchers, policymakers,
+ and the public is essential to navigate the ethical landscape
+ of AI development and harness its full potential for societal benefit.
+
+
+
+ VIDEO
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/css_page.html b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/css_page.html
new file mode 100644
index 0000000..2aae326
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/css_page.html
@@ -0,0 +1,80 @@
+{%load static%}
+
+
+
+
+
+ CSS introduction
+
+
+
+
+
+ Things I like
+
+
+
some of My hobbies:
+
+
+
+
some of New hobbies:
+
+ reading
+
+ my faveroite book is "how to impact on other"
+
+ explore new things
+
+
+
+ links to help me work on my hobbies
+
+
+ Hobby
+ Link
+
+
+
+
+ Reading
+ reading website
+
+
+
+ Explore new things
+
+
+
+
+
+
+
+
+ End
+
+
+
+
+
+ Send your opinion through this form:
+
+
+
+
+ TOP
+
+
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/cv.html b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/cv.html
new file mode 100644
index 0000000..6c5453a
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/cv.html
@@ -0,0 +1,112 @@
+{%load static%}
+
+
+
+
+
+
+
+
+
+
+ My CV
+
+
+
+
+ Your browser does not support the video tag.
+
+
+
+
+
+
+
Hello, I'm Areej Shareefi,I'm developer
+
Recent graduate student. I am heading more toward data science and software engineering, driven by my passion for analysis and problem-solving. I seek to develop myself professionally and scientifically, and I am interested in well-respected corporations, especially those specializing in software engineering.
+
+
+
+ Education
+ bachelor's degree, College of Computer Science and Engineering - Department of Computer Information Systems, 06/2023
+ Taibah University - Medina, Saudi Arabia
+
+ GPA 4.93 out of 5.00 - First class honours
+
+
+
+ Skills
+
+ HTML 5 CSS 3
+
+ Python 3.6
+ JavaScript ES6
+ Geographic Information System by QGIS
+ Data visualization by Power BI
+ Microsoft 365 Office programs
+ MySQL 8
+
+
+
+
+
+ Languages
+
+
+ Arabic - Native
+ English - Intermediate
+
+
+
+ Certifications
+
+ 11/2021 - Cisco Certified Introduction to Packet Tracer.
+ 4/2024 - Certificate of completion of the virtual work experience in “Data Analysis” from the Saudi Telecom Company “STC”.
+ 5/2024 - Certificate of completion of the virtual work experience in “Data Science and AI” from the Microsoft Company
+
+
+
+
+
+
+
+
+
+ Graduation Project - 2023
+
+ Developed a reservation information system designed for different user types. The website offers users comprehensive campus information with an interactive map.
+
+
+
+
+
+
+
+
+
+
+
+
+
Contact with me
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/cv_work.html b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/cv_work.html
new file mode 100644
index 0000000..acbab03
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/cv_work.html
@@ -0,0 +1,118 @@
+{%load static%}
+
+
+
+
+
+
+
+
+
+
+ My CV
+
+
+
+
+ Your browser does not support the video tag.
+
+
+
+
+
+
+
Hi Again, Take a Look On My Experience Work.
+
+
+
+
+
+
+ Quwa Altaqah Alshamsiah Trading Institution, Medina, Saudi Arabia
+ Data analyst, 07/2022 – 7/2024
+
+
+ Collecting and analyzing administrative requirements for designing and modeling.
+ Gathering, processing, and analyzing data to compile and deliver comprehensive reports.
+ Maintaining CRUD operations.
+ Visualize data to provide valuable insight and support decision-making.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Qeyamuna Charitable Society for Community Service, Medina , Saudi Arabia
+ Project Supervisor, 07/2023 - 08/2023
+
+
+ Arrange meetings with all relevant stakeholders, capturing detailed minutes of meetings.
+ Develop a detailed project plan and provide reports at regular intervals to track progress.
+ Coordinate and allocate internal resources and third parties/vendors for the project execution.
+ Create and maintain comprehensive project documentation.
+ Client and stakeholder relationship management.
+ Reporting to the upper management and submitting historical project information to the project management office in the closing phase.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Qeyamuna Charitable Society for Community Service, Medina , Saudi Arabia
+ Intern, 07/2022 - 08/2022
+
+
+ Set up and configure the "Rafed" information system to toiles "Rafed" for work efficiency.
+ The "Rafed" information system workshops provide training for employees.
+ Managing and maintaining the content management system of “Rafed”.
+ Administrative tasks and relationship management.
+ Submitting and reconciling expense reports.
+
+
+
+
+
+
+
+
+
+
+
+
Contact with me
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/html_page.html b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/html_page.html
new file mode 100644
index 0000000..5b8f99e
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/templates/mini_projects/html_page.html
@@ -0,0 +1,74 @@
+{%load static%}
+
+
+
+
+
+ inroduction in HTML
+
+
+
+ Things I like.
+
+ some of My hobbies:
+
+
+ some of New hobbies:
+
+ reading
+
+ my faveroite book is "how to impact on other"
+
+ explore new things
+
+
+ links to help me work on my hobbies:
+
+ My sources table
+
+
+ Hobby
+ Link
+
+
+
+
+ Reading
+ reading website
+
+
+
+ Explore new things
+
+
+
+
+
+
+
+
+ end of table
+
+
+
+
+
+ Send your opinion through this form:
+
+
+
+ Email
+
+ massege
+
+
+ submit
+
+
+
+ TOP
+
+
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/tests.py b/CSSandHTMLlearningJourney/mini_projects/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/CSSandHTMLlearningJourney/mini_projects/urls.py b/CSSandHTMLlearningJourney/mini_projects/urls.py
new file mode 100644
index 0000000..e782094
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/urls.py
@@ -0,0 +1,13 @@
+from django.urls import path
+from . import views
+
+
+app_name='mini_projects'
+
+urlpatterns=[
+ path('html/introduction/',views.html_view,name="html_view"),
+ path('css/introduction/',views.css_view,name='css_view'),
+ path("article/ai/",views.ai_view,name="ai_view" ),
+ path("careers/cv/",views.cv_view,name="cv_view"),
+ path("careers/cv/work",views.cv_work_view,name="cv_work_view"),
+]
\ No newline at end of file
diff --git a/CSSandHTMLlearningJourney/mini_projects/views.py b/CSSandHTMLlearningJourney/mini_projects/views.py
new file mode 100644
index 0000000..b760137
--- /dev/null
+++ b/CSSandHTMLlearningJourney/mini_projects/views.py
@@ -0,0 +1,19 @@
+from django.shortcuts import render
+from django.http import HttpRequest,HttpResponse
+
+
+# Create your views here.
+def html_view(request:HttpRequest):
+ return render(request,"mini_projects/html_page.html")
+
+def css_view(request):
+ return render(request,"mini_projects/css_page.html")
+
+def ai_view(request):
+ return render(request, "mini_projects/ai.html")
+
+def cv_view(request):
+ return render(request, "mini_projects/cv.html")
+
+def cv_work_view(request):
+ return render(request, "mini_projects/cv_work.html")
\ No newline at end of file