Artificial Intelligence is the intelligence possessed by the machines under which they can perform various functions with human help. With the help of A.I, machines will be able to learn, solve problems, plan things, think, etc. Artificial Intelligence, for example, is the simulation of human intelligence by machines. In the field of technology, Artificial Intelligence is evolving rapidly day by day and it is believed that in the near future, artificial intelligence is going to change human life very drastically and will most probably end all the crises of the world by sorting out the major problems.
+
+
+Our life in this modern age depends largely on computers. It is almost impossible to think about life without computers. We need computers in everything that we use in our daily lives. So it becomes very important to make computers intelligent so that our lives become easy. Artificial Intelligence is the theory and development of computers, which imitates the human intelligence and senses, such as visual perception, speech recognition, decision-making, and translation between languages. Artificial Intelligence has brought a revolution in the world of technology.
+
Artificial Intelligence Applications
+
+
AI is widely used in the field of healthcare. Companies are attempting to develop technologies that will allow for rapid diagnosis. Artificial Intelligence would be able to operate on patients without the need for human oversight. Surgical procedures based on technology are already being performed.
+
+
+Artificial Intelligence would save a lot of our time. The use of robots would decrease human labour. For example, in industries robots are used which have saved a lot of human effort and time.
+
+
+In the field of education, AI has the potential to be very effective. It can bring innovative ways of teaching students with the help of which students will be able to learn the concepts better.
+
+
+Artificial intelligence is the future of innovative technology as we can use it in many fields. For example, it can be used in the Military sector, Industrial sector, Automobiles, etc. In the coming years, we will be able to see more applications of AI as this technology is evolving day by day.
+
+
Marketing: Intelligence provides a deep knowledge of consumers and potential clients to the marketers by enabling them to deliver information at the right time. Through AI solutions, the marketers can refine their campaigns and strategies.
+
Agriculture: AI technology can be used to detect diseases in plants, pests, and poor plant nutrition. With the help of AI, farmers can analyze the weather conditions, temperature, water usage, and condition of the soil.
+
Banking:Fraudulent activities can be detected through AI solutions. AI bots, digital payment advisers can create a high quality of service
+
+
Health Care:Artificial Intelligence can surpass human cognition in the analysis, diagnosis, and complication of complicated medical data.
+
+
+
History of Artificial Intelligence
+
Artificial Intelligence may seem to be a new technology but if we do a bit of research, we will find that it has roots deep in the past. In Greek Mythology, it is said that the concepts of AI were used.
+
+
+The model of Artificial neurons was first brought forward in 1943 by Warren McCulloch and Walter Pits. After seven years, in 1950, a research paper related to AI was published by Alan Turing which was titled 'Computer Machinery and Intelligence. The term Artificial Intelligence was first coined in 1956 by John McCarthy, who is known as the father of Artificial Intelligence.
+
+
+To conclude, we can say that Artificial Intelligence will be the future of the world. As per the experts, we won't be able to separate ourselves from this technology as it would become an integral part of our lives shortly. AI would change the way we live in this world. This technology would prove to be revolutionary because it will change our lives for good.
+ I started my life in Ha'il and moved to the capital city where I grew up and made friends for about 15 years.
+ The weird thing is, I loved this city, but after going back to Ha'il, I can't imagine myself going outside of the city. I love it.
+
+
+
+
+
My Academic Journey
+
University of Ha'il
+
+ I started my school journey at Riyadh Al-Muwahhid Private Schools. After that, I moved to Ibn Aqil School.
+ This was before returning to Ha'il city, and I studied at the University of Ha'il after we got back.
+ In this university, I experienced multiple positive impacts on my personal life and certainly in my professional path. I learned various concepts of programming, databases, and marketing.
+
+ I love watching different stories and reading; I enjoy these stories and the meaningful messages in them. The weird thing is, I also love watching football, which has no meaningful messages, and playing story-driven games.
+
+
+
+
Experience
+
+
Internship at King Fahad Medical City
+
+ Riyadh, Saudi Arabia | July 2023 - December 2023
+ At King Fahad Medical City, I had the invaluable opportunity to enhance my skills and knowledge in various aspects of software development and data analysis. This experience allowed me to gain practical exposure to C#, Power BI, and as I embark on the final five months of my co-op, I am excited to continue learning and contributing.
+
+
+
Programming Member at PGC
+
+ University of Ha'il | May 2023 - December 2023
+ As a member of the programming team at PGC, my role involves developing programming projects, sharing my work, and conducting workshops to enhance students' understanding and application of programming, thereby contributing significantly to the organization's educational mission.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CssHtml/main/templates/main/introduction.html b/CssHtml/main/templates/main/introduction.html
new file mode 100644
index 0000000..a3f2cf6
--- /dev/null
+++ b/CssHtml/main/templates/main/introduction.html
@@ -0,0 +1,46 @@
+
+
+
+
+
+ Document
+
+
+
+
+
I like HxH scenic childhood
+
same with football at Barcelona
+
the penguin is the bast series at this year
+
nothing like studying django
+
my name is Saleh
+
+
+
+
\ No newline at end of file
diff --git a/CssHtml/main/tests.py b/CssHtml/main/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/CssHtml/main/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/CssHtml/main/views.py b/CssHtml/main/views.py
new file mode 100644
index 0000000..3bb732e
--- /dev/null
+++ b/CssHtml/main/views.py
@@ -0,0 +1,14 @@
+from django.http import HttpRequest
+from django.shortcuts import render
+
+def view_html(request:HttpRequest):
+ return render(request, "main/introduction.html")
+
+def view_css(request:HttpRequest):
+ return render(request, "main/css.html")
+
+def view_article(request:HttpRequest):
+ return render(request, "main/article.html")
+def view_cv(request:HttpRequest):
+ return render(request,"main/cv.html")
+
diff --git a/CssHtml/manage.py b/CssHtml/manage.py
new file mode 100644
index 0000000..0b24d6c
--- /dev/null
+++ b/CssHtml/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', 'CssHtml.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()