Archives - September 2015
September 30, 2015 8:13 am
Published by Gerard Millares
HTML validation is a program to ensure that the quality of the HTML document meets the standards set by the World Wide Web Consortium (W3C). The HTML validation process performs syntax checks on the document and ensures that the document...
Read More
September 28, 2015 7:58 am
Published by Gerard Millares
In this blog post, we will be discussing about good coding practices in HTML and how to move forward during your initial days of learning HTML. As we can realize from the video tutorials and the blog posts, HTML tags...
Read More
September 26, 2015 7:56 am
Published by Gerard Millares
A lot of people, especially beginners in HTML, have doubts regarding the text editors and how to use text editors for writing HTML codes. Text Editors provides the space where a user can write the codes for his HTML document....
Read More
September 24, 2015 6:46 am
Published by Gerard Millares
DOM, or Document Object Model, defines a structured representation to organize the HTML documents in a tree structure. From a technical point of view, DOM is a language independent and cross platform convention for the interaction and representation through objects...
Read More
September 22, 2015 3:50 am
Published by Gerard Millares
HTML or Hyper Text Markup Language is a standard markup language that comes in handy for creating web pages. If you aspire to be a web designer, this is where you start from; this is where you take your first...
Read More
September 20, 2015 7:34 am
Published by Gerard Millares
If you have some sort of experience in working on programming languages such as Java, C or C ++, it will not be a surprise to know that you found the whole concept of global and local variables a bit...
Read More
September 18, 2015 7:09 am
Published by Gerard Millares
In the previous blog post on this tutorial series called Python for Beginners, we discussed about functions and their implementation in Python. In this blog post, we are going to move forward with our discussion on functions and include the...
Read More
September 16, 2015 6:45 am
Published by Gerard Millares
It is quite understandable that beginners always shy away from using functions in their codes and often prefer writing large number of lines in a program to grouping the functionalities into different functions. Functions is no doubt a great utility...
Read More
September 14, 2015 6:22 am
Published by Gerard Millares
Following on the ‘if’, ‘else’ and the ‘if else’ statement, in this blog post we are going to talk about the ‘if…elif…else’ statements in Python. The inclusion of the ‘elif’ condition might be a little new for all the beginners...
Read More
September 12, 2015 6:04 am
Published by Gerard Millares
In our last blog post we discussed about the “if statement” in Python and mentioned that the “if else” statement is a better option than writing consecutive “if” statements in Python. In this blog post as part of the series...
Read More