Skip to main content

Posts

What are some of the best ways to learn programming?

1. Pick a language   with a purpose. Before you start learning code for the first time or continue your education, you should have a clear understanding of what you want to learn and why you want to learn it. Do you prefer developing games to developing websites? Think about data science. Before choosing a programming language, you should have a goal in mind because different languages have different uses. If you are interested and engaged in the subject, you will have a better understanding of the material and move much more quickly. 2. Start learning the fundamentals. Start at the bottom and work your way up once you've chosen a language to learn. Even though you might be tempted to enroll in intermediate courses or try taking multiple classes at once, it is best to master the fundamentals before moving on. You run the risk of making mistakes when you skip over the fundamentals of programming, which will become apparent as you progress through more challenging readings. After th...
Recent posts

HTML formatting tags

Formatting tags in HTML. There are different types of formatting tags in HTML and these tags are.~ <b> <strong> <i> <em> <mark> <small> <del> <ins> <sub> <sup> HTML formatting tags specify how the text can appear in the browser like the text should appear bold, italic, small, large, etc. Now let’s understand each tag one by one. Firstly we will see a bold and strong tag. let’s understood the bold tag. Anything that appears within the <b>…</b> tag is displayed in bold. The HTML <b> tag defines bold text, without any extra importance. Then we have the strong tag. The HTML strong <strong> tag defines the text with strong importance. The content inside is typically displayed in bold. Then we have the HTML italic and emphasis elements. Anything that appears within <i>….</i> element is displayed in italics. The HTML  <i>the the  element defines the specific part of the ...

Difference Between the Java and Javascript

JAVA is a programming language invented by James Gosling and developed by SUN MICROSYSTEM. It was first released in 1995. It is one of the most popular OOPS languages. JAVASCRIPT is developed by Brenden Eich at Netscape. He created this programming language in 1990 and named it LiveScript initially. Later on, it was renamed JavaScript It is a web-based object-oriented scripting language used to add motion or dynamic content to our website. Both languages are object-oriented. Java applications and programs run in Java Virtual Machine(JVM). Also, you need to install JDK and JRF JavaScript applications run on a web browser and there is no need for any initial setup. Java programs are compiled and interpreted as it is a programming language. JavaScript is only interpreted as it is a scripting language or plain text code.

HTML Elements

 HTML Elements An HTML element is defined by a start tag, some content, and end tag. The HTML element is everything from the start tag to the end tag: <tag name> Content goes here....</tag name> Examples: <h1>First heading</h1> <p> First paragraph</p> Starting tag: <h1> Ending tag: </h1>  Element content: First heading Note: Some elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an end tag!. Nested HTML Elements: HTML elements can be nested (this means that element can obtain other elements). All HTML documents consist of nested HTML elements.  The following example consist four HTML elements(<html>, <body>, <h1> an d <p>). <!DOCTYPE html> <html> <body> <h1> First heading </h1> <p> First paragraph </p> </body> </html> Example explained The <html> element is the ...

Why should we learn Python ? | Python learning.

| Python Python is high level programming language, by the use of python we create complex computer programs. Python is also known as interpreted language. |  Python used in various fields     Python can be used in different ways such as: Software developers Data scientists Data Analysts Hackers Bankers Engineers Designers Doctors Scientists, etc. | Why Python is known as Python? Python is named after a comic series. Guido Van Rossum is the creator of Python. Python is an easy programming language, using python the complex programs can be written.   |  Advantages of Python Python can be used online, offline. A nd Python can be used in Smaller or big projects. Python is an Interpreter language, where Programs can be executed directly without complier.   |  Applications of Python Web application. Mathematical Computations. Graphical User Interface. And may more.....   Thanks for visit!!!

Difference between HTML, CSS and Java Script

Difference between HTML, CSS and Java Script HTML/XHTML HTML (HyperText Markup Langage) is the language used to create web page documents. The updated version, XHTML (eXtensible HTML) is essentially the same language with stricter syntax rules.It is common to see HTML and XHTML referred to collectively as (X)HTML, as (X)HTML is not a programming language; it is a markup language, which means it is a system for identifying and describing the various components of a document such as headings, paragraphs, and lists. You don’t need programming skills—only patience and common sense—to write (X)HTML. Everyone involved with the Web needs a basic understanding of how HTML works. The best way to learn is to write out some pages by hand, If you end up working in web pr...

Introduction to HTML

HTML Introduction HTML Introduction HTML is the standard markup language for creating webpages. What is HTML? HTML stands for Hyper Text Markup Language. HTML describe the structure of a webpage. HTML consists of series of elements. HTML elements tell the browsers how to diplay the content. HTML element label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. A simple HTML Document Example <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My first heading</h1> <p>My first paragr...