Sunday, 22 May 2022
Inputs Types In HTML
Friday, 18 February 2022
My Programming Journey And History
Saturday, 23 October 2021
How To Add A Background Image To Your HTML website.
Many programmers and website builders face challenges of inserting a background image to their HTML and CSS websites. Others struggle a lot in passing through Google videos, and they can't get the best codes to paste direct to their website.
Having a good experience in website development, I'm going to give you the best and straightforward codes which will help you come from these problems.
To place a background image, you need to first identify where to position your image on the website. Second, look for a good image which can fit the whole place. In this case, the image should be very decorative to attract many readers or visitors to your website.
If you are using external CSS, make sure your CSS link is connected with the HTML pages.
After that, give the name of the container using class="" or id="". The class in CSS is usually used with(.) while Id is used with(#).
At the HTML page, insert this codes.
In CSS page, insert your image.
Thank you for visiting me.
Sunday, 10 October 2021
How To Make An Active Download Button Using HTML And CSS.
If you are creating a blog or a website, and you want to put downloadable documents, there are ways you can create the download button and link it to your documents.
For the button to work out perfectly, the documents to be downloaded should be in the same folder as the other documents.
The link of the document should now be mounted into the website code e.g. if "post/edit/310299486750145624" is the document link, now the code should be like
create a button like this;
<button class="btn"><i class="fa fa-download"></i> Download</button>
Make sure you position your button at the preferred place.
Then give your button a class so that the program can know what it's going to do.
The full button code;
Sunday, 15 August 2021
How To Add Social Media channels Into Your HTML Website
Monday, 15 February 2021
Advantages Of Python Programming language.
React vs Angular; Front-End Web Development
Angular and React are two of the most popular Javascript tools for front-end development. React is a Javascript created by Meta...