Html and Php tutorials
Simple and easy to understand Php and Html tutorials.
3 topics in this forum
-
This is where you find simple Php and Html code snippets. I'm using this first and foremost for my own reference when making changes to themes and other basic things. I will be adding Php and Html scripts for simple changes whenever I come across them. This does not stop you for adding tutorials for your own reference as well. But please, keep it simple. There are tons of advanced Php and Html tutorial sites out there, such as W3schools for one example, which is my go to for help and references.
-
- 0 replies
- 666 views
-
-
The src Attribute The <img> tag is used to embed an image in an HTML page. The src attribute specifies the path to the image to be displayed: <img src="img_girl.jpg"> There are two ways to specify the URL in the src attribute: 1. Absolute URL - Links to an external image that is hosted on another website. Example: src="https://www.w3schools.com/images/img_girl.jpg". Notes: External images might be under copyright. If you do not get permission to use it, you may be in violation of copyright laws. In addition, you cannot control external images; it can suddenly be removed or changed. 2. Relative URL - Links to an image that is hosted withi…
-
- 0 replies
- 424 views
-
-
Creating a Html link is really simple. The code below will result in --> Throneofgeeks.com The href Attribute The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to: <a href="https://www.throneofgeeks.com">Throneofgeeks</a> Just replace the URL and the "link name".
-
- 0 replies
- 432 views
-