diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..fbd2e5a
Binary files /dev/null and b/.DS_Store differ
diff --git a/TVTime/TVTime/__init__.py b/TVTime/TVTime/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/TVTime/TVTime/asgi.py b/TVTime/TVTime/asgi.py
new file mode 100644
index 0000000..faea62a
--- /dev/null
+++ b/TVTime/TVTime/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for TVTime 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', 'TVTime.settings')
+
+application = get_asgi_application()
diff --git a/TVTime/TVTime/settings.py b/TVTime/TVTime/settings.py
new file mode 100644
index 0000000..fa36dc8
--- /dev/null
+++ b/TVTime/TVTime/settings.py
@@ -0,0 +1,124 @@
+"""
+Django settings for TVTime 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-y9h85elx76kl%kf^+ms8mn+6p*6w0%j06p#^atb3shs^)o+jb4'
+
+# 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',
+ 'main',
+]
+
+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 = 'TVTime.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 = 'TVTime.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/TVTime/TVTime/urls.py b/TVTime/TVTime/urls.py
new file mode 100644
index 0000000..6b2d33a
--- /dev/null
+++ b/TVTime/TVTime/urls.py
@@ -0,0 +1,23 @@
+"""
+URL configuration for TVTime 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("main.urls")),
+]
diff --git a/TVTime/TVTime/wsgi.py b/TVTime/TVTime/wsgi.py
new file mode 100644
index 0000000..3395a09
--- /dev/null
+++ b/TVTime/TVTime/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for TVTime 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', 'TVTime.settings')
+
+application = get_wsgi_application()
diff --git a/TVTime/main/__init__.py b/TVTime/main/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/TVTime/main/admin.py b/TVTime/main/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/TVTime/main/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/TVTime/main/apps.py b/TVTime/main/apps.py
new file mode 100644
index 0000000..167f044
--- /dev/null
+++ b/TVTime/main/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class MainConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'main'
diff --git a/TVTime/main/migrations/__init__.py b/TVTime/main/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/TVTime/main/models.py b/TVTime/main/models.py
new file mode 100644
index 0000000..71a8362
--- /dev/null
+++ b/TVTime/main/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/TVTime/main/static/images/Ball.png b/TVTime/main/static/images/Ball.png
new file mode 100644
index 0000000..4de230d
Binary files /dev/null and b/TVTime/main/static/images/Ball.png differ
diff --git a/TVTime/main/static/images/Free.png b/TVTime/main/static/images/Free.png
new file mode 100644
index 0000000..92dae0f
Binary files /dev/null and b/TVTime/main/static/images/Free.png differ
diff --git a/TVTime/main/static/images/Image 4.png b/TVTime/main/static/images/Image 4.png
new file mode 100644
index 0000000..92ccf83
Binary files /dev/null and b/TVTime/main/static/images/Image 4.png differ
diff --git a/TVTime/main/static/images/Space.png b/TVTime/main/static/images/Space.png
new file mode 100644
index 0000000..6773c5b
Binary files /dev/null and b/TVTime/main/static/images/Space.png differ
diff --git a/TVTime/main/static/images/ai-applications.jpeg b/TVTime/main/static/images/ai-applications.jpeg
new file mode 100644
index 0000000..0b616ce
Binary files /dev/null and b/TVTime/main/static/images/ai-applications.jpeg differ
diff --git a/TVTime/main/static/images/color.jpg b/TVTime/main/static/images/color.jpg
new file mode 100644
index 0000000..113f2db
Binary files /dev/null and b/TVTime/main/static/images/color.jpg differ
diff --git a/TVTime/main/static/images/hi.jpeg b/TVTime/main/static/images/hi.jpeg
new file mode 100644
index 0000000..a93d648
Binary files /dev/null and b/TVTime/main/static/images/hi.jpeg differ
diff --git a/TVTime/main/static/images/wall.jpg b/TVTime/main/static/images/wall.jpg
new file mode 100644
index 0000000..d7dcc0e
Binary files /dev/null and b/TVTime/main/static/images/wall.jpg differ
diff --git a/TVTime/main/static/videos/ai-future.mp4 b/TVTime/main/static/videos/ai-future.mp4
new file mode 100644
index 0000000..d931146
Binary files /dev/null and b/TVTime/main/static/videos/ai-future.mp4 differ
diff --git a/TVTime/main/templates/main/css_intro.html b/TVTime/main/templates/main/css_intro.html
new file mode 100644
index 0000000..e21cde9
--- /dev/null
+++ b/TVTime/main/templates/main/css_intro.html
@@ -0,0 +1,251 @@
+
+
+
+ {% load static %}
+
+
+ CSS Intro
+
+
+
+
+
+
+
+
+
+
+
+ Basic Syntax and Selectors
+
+ This is an example of an element selector.
+
+
+ This is a class selector example.
+
+ This is an ID selector example.
+
+
+
+
+
+
+
+ Colors and Backgrounds
+ This text has a color applied using HEX.
+
+ This text has a color applied using RGB.
+
+
+
+ This div has a background and color applied.
+
+ This div has a background image
+
+
+
+
+
+
+ Text Styling
+
+ This paragraph demonstrates different text styling properties.
+
+ This text uses Google Fonts.
+
+
+
+
+
+
+ Unit of Measurements & Positions
+ This is a positioned element.
+
+
+
+
+
+
+ Box Model
+
+ This box demonstrates the CSS box model.
+
+
+
+
+
+
+
+ Layout Basics
+
+
Block Element
+
Inline Element
+
Inline-Block Element
+
+
+
+
+
+
+
+ Flexbox Basics
+
+
Flex Item 1
+
Flex Item 2
+
Flex Item 3
+
+
+
+
+
+
+
diff --git a/TVTime/main/templates/main/home.html b/TVTime/main/templates/main/home.html
new file mode 100644
index 0000000..c464b0b
--- /dev/null
+++ b/TVTime/main/templates/main/home.html
@@ -0,0 +1,70 @@
+
+
+
+ {% load static %}
+
+
+ Home
+
+
+
+
+
+
+
+ Hi,
+ Welcome to My Practice
+ Thank you for stepping by and seeing my prograsse
+ Please Click Any of the Links Below to Follow Me Through My Learning Journey
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/TVTime/main/templates/main/html_intro.html b/TVTime/main/templates/main/html_intro.html
new file mode 100644
index 0000000..3fff53e
--- /dev/null
+++ b/TVTime/main/templates/main/html_intro.html
@@ -0,0 +1,233 @@
+
+
+
+ {% load static %}
+
+
+ HTML Intro
+
+
+
+
+
+
+
+
+
+ This is a Link to Go to Home Page:
+
+
+
+
+
+
+
+ This is an Image:
+
+
+
+
+
+
+ This is an Ordered List:
+
+
+ - Finish the Lab
+ - Go to the supermarket
+
+
+
+
+
+
+
+ This is Unordered List:
+
+ - Spend Time With my Sisters
+ - Do Laundry
+
+
+
+
+
+
+
+ This is Definition List:
+
+ - My First Item
+ - My First Description
+ - My Second Item
+ - My Second Description
+
+
+
+
+
+
+
+ This is a Table:
+
+
+
+ Sun |
+ Mon |
+ Tue |
+ Wed |
+ Thu |
+ Fri |
+ Sat |
+
+
+
+
+
+
+ Start The Week Right |
+ Finish all My Work |
+ Rest |
+ Rest |
+ Rest |
+ Rest |
+ Rest |
+
+
+
+
+
+
+
+
+
+
+ This is a Form:
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/TVTime/main/templates/main/my_ai_article.html b/TVTime/main/templates/main/my_ai_article.html
new file mode 100644
index 0000000..500fbeb
--- /dev/null
+++ b/TVTime/main/templates/main/my_ai_article.html
@@ -0,0 +1,230 @@
+
+
+
+ {% load static %}
+
+
+
+ AI Article
+
+
+
+
+
+ The AI Revolution
+