HTML

How To Read A CSV Into A HTML Table With Python

A lot can been done with a CSV (“comma separated value”) file. If you can run a web scraping script on your local machine, you can FTP the results to a FTP site in the ubiquitous CSV format, and then render it on your web page with HTML. The rest of this post demonstrates a […]

Continue Reading

Python Project – Online Quiz Management

I am going to be implementing some Python projects with a browser front end (obviously since that’s what this domain is called), I am going to be focusing on the core functionality, not really the aesthetics. You can always use some stylesheets (CSS) to make it look pretty. I am just concerned with the fact […]

Continue Reading

A Brief History Of HTML

What Is The Concept Of HTML HTML is an acronym for “HyperText Markup Language” and put 2 key concepts together, hypertext and markup language. The language of HTML is used to create documents that use “tags” to determine structure and format. Hypertext provides a way to organize and present data in a way, it’s the […]

Continue Reading

What Is HTML?

HTML – stands for “Hyper Text Markup Language” It’s the basic stuff web pages were written in years ago. Because the web pages were mostly static, this was a way to break up the monotony. You could and some color to your text and change the font size where you wanted. You could even link […]

Continue Reading

Simple Python Variables Examples

In this post I am going to show you 2 simple ways of using variables in your python html files. The 1st way is using a text, string, variable #!/usr/bin/python msg=’Python Text Variable.’ print “Content-type: text/html\n\n”; print “<html><head>”; print “<title>Simple Python Text Variable</title>”; print “</head><body>”; print “<p>” + msg + “</p>”; print “</body></html>”; Here is […]

Continue Reading