Posts

Showing posts from August, 2020

Creating form with html/How-to

Image
After watching the video ....make sure you watch the video and above to learn more...down below are the source codes <!DOCTYPE html> <html> <head>   <title> form with html </title> </head> <body>   <form>     <label> Firstname: </label>     <input type= "text" name= "fn" required placeholder= "Your firstname..." />     <br/> <br/>     <label> Lastname: </label>     <input type= "text" name= "ln" required placeholder= "your last name.." />     <br/> <br/>    <label> Gender: </label>     <input type= "radio" name= "gen" /> male   <input type= "radio" name= "gen" /> female   <br/> <br/>    <label> Select Country </label>    <select>    ...

How to add/insert image in webpage html tutorials for beginners | adjust...

Image

Auto-image slider with your smart phone(HTML and javaScript)

Image
Creating an auto image slider, you need the knowledge of HTML and javaScript...... But if no knowledge about, you which to create like this....infact you can just copy and the codes down below . Here we go......into the journey. Html :  Using HTML you have place some image with HTML and class them for javaScript to execute. <body> <div class= "mySlides" >   <img src= "Url or name of the image" width= "100%" height= "400px" /> </div> <div class= "mySlides" > <img src= "Url or name of the image  " width= "100%" height= "400px" /> </div> <div class= "mySlides" > <img src= "Url or next of the image" width= "100%" height= "400px" /> </div> Now it's time to add javascript. <script> var slideIndex = 0; showSlides(); function showSlides() {   var i;   var slides = document.getElementsB...