All Entries Tagged With: "HTML"
How to Make an Animated Loading GIF
When you have a form to submit some kind of data to your website it is very helpful to have a loading image that is displayed once the user submits the form. This let’s the user know that the form was submitted and the upload is in progress, rather than just relying on looking up [...]
HTML Div Float Property
Using the HTML tag – <div> and the float style property, you can make designs for your websites. Well, you can make layouts for where design could be. This is a good structural tool in laying out where content will be on your web pages, images, blurbs, etc. Let’s say we want a page to [...]
PHP Pagination with Mysql
So you have a Mysql table you want to pull data from, but you don’t want to flood the page with everything in the table right! So you need some pagination to seperate all the content in the table into easy to open pages. So let’s say this is your mysql query: $sql = mysql_query(“SELECT [...]
Mysql Rows in HTML Option Tag
Let’s say you want to have a simple HTML <select> form as a drop down for rows in a Mysql table. This could be for things like categories, pages, games, anything you want to have in a drop down to navigate to another page or submit a form. What ever the case is, I’m going [...]
HTML Linking Stylesheets
There are several ways to incorporate styles to elements in your HTML and apply them throughout the document. In this we will go over three ways to include styles, and three ways to apply the styles to different elements. Linking External Stylesheets You can link an external stylesheet to your HTML document through the <link> [...]
HTML body tag
The body tag in a HTML document defines the documents body. This includes the majority of the displayed content on the page, such as hyperlinks, images, etc. Here is a basic HTML document with the body tag: <html> <head> <title>HTML Document</title> </head> <body> Body content. </body> </html> The body tag is supported by all major [...]
Using HTML Meta tags
Meta HTML tags can be very helpful for gaining some search engine rank and promoting your website better. However, these simple tags are not going to drive your website immediately to the top of the lists. Meta tags are basically information located in the head of your webpage(s). This content is not visible to the [...]
