Skip to main content

Posts

Showing posts with the label addlink

Code: Form Input Types

  Code: Form Input Types Send Feedback For now, we have created a simple form. But there is a problem that the inputs can take any value other than what they are meant to be. So, we need to change the type of the input element for proper functioning. Your task is to change the type of input according to the meaning of each of them. The meaning of each input element is provided below - 1. Comment - to provide a comment for the blog 2. Name - the name of the person who wants to comment on the blog. 3. Email - to provide the email id of the person. 4. Website - to provide the link to a website that belongs to the above said person. The expected output is - code for this  <!DOCTYPE html> <html>     <head>         <title>Best Coding Practices</title>     </head>     <body>         <div>             <header>       ...

Add Links to Blog

  Add Links to Blog Send Feedback We now know how to jump from one page to another. Isn't this interesting! And remember, links can be used together with a lot of other tags. So, let's add some links to your blog page. The element with the links to are provided below - 1. ELEMENT - <img src="https://ninjasfiles.s3.amazonaws.com/0000000000001394.png" alt="coding ninjas logo"> LINK TO ADD - http://blog.codingninjas.in/ 2. ELEMENT - <img src="https://ninjasfiles.s3.amazonaws.com/0000000000001395.png" alt="coding ninjas love coding"> LINK TO ADD - http://blog.codingninjas.in/ 3. ELEMENT - <p>blog.codingninjas.in</p> LINK TO ADD - http://blog.codingninjas.in/ The blog page will look like the image below - code for this question  <!DOCTYPE html> <html>     <head>         <title>Best Coding Practices</title>     </head>     <body>          ...