Posts

Showing posts from June, 2020

Setting up a Virtual Development Environment for Django3

Image
Goal: A Professional Quality Development Environment If you already have Django 3.x installed in your system, then you can skip this post but if it's not, then don't worry we will get everything up and running in the next few minutes. To install django, you need to have Python 3.x running in your System. To install python in your system, you can check official website of python To confirm whether you have python installed in your system or not, just type python in your shell and you should see the shell of python3.8.x Creating an isolated Python environment After you have Python3.x running in your system, We will now create a virtual environment which won't have anything installed except the python and we will use this to work on our django projects. Using virtual environments helps us to separate different package versions for different projects. Also if you are in multi user OS, then you won't need any permissions to install anything and work on your project.

Lets Start With The Basics Of HTML

Image
HELLO EVERYONE , As you know everyone its Yogesh Bansal here, So recently we have done about the introduction to HTML. Today we start with the basics of HTML. Like:-Headings, Paragraphs, Links, Images, Lists, and many more. If there is any doubt or problem please comment it down I will be happy to hear from you. What are the attributes of HTML? Attributes are the modifiers of the HTML element. It modifies elements like font-size, font-color, etc. It always declared in the start Tag For ex:- <TAG style = "color:blue">Some Text</TAG>  # "style" is attribute here There are many types of attributes like href attribute, src attribute, alt attribute, target attribute, etc. What are HTML headings? HTML headings are the titles or subtitles that you want to show on the webpage. There are 6 Heading Tags from <h1> to <h6> <h1> shows the most important heading and <h6> show the leas