Skip to main content

Posts

Showing posts from July, 2023

WHAT IS CSS?ADVANTAGES, SYNTAX.

 CSS PROGRAMMING LANGAUGE                                                                     disadvantages CSS full form is cascade style sheets , which we call it says about how you should display the HTML elements on the screen. CSS tells us the style of the webpage let us take a simple example, if we build a home first we lay out the design that is known as the HTML language. Where the CSS means layout which means giving instructions on how the furniture should be nothing but the CSS. For example if we take PayPal we can see that the background color blue says the CSS background-color property. Netflix is also the best way of saying  CSS property, but if we remove it will be a normal webpage but with the red color and the black plus symbols it looks like the best webpage. Versions of CSS There are different versions available now in case it is developed by Wium we have three versions that are css1, css2, and css3. Currently we are using this css3 version this is the best version fo

WHAT IS HTML LINKS?IMAGE LINK, BUTTON LINK, EMAIL ID.

 WHAT IS A LINK IN HTML                                                                    links HTML Links: A link is a URL that takes us to a new tab if we give the address of the image or any website. We use the links in HTML because they help us to navigate to other websites easily. These are the different types of giving links in HTML absolute, relative, and inline links. SYNTAX  <a href="https://www.w3schools.com/html/html_links.asp">hi</a>  This is overall how to write syntax, firstly open the HTML link parenthesis, an element href attribute equal to. Double codes give the URL of any one of the website or web page, I have given the link of w3 schools and closed the parenthesis and closed it between that writedown some any text. LINK TO WEB PAGE <html> <body> <p> This is a new paragraph</p> <a href="https://programtechhub1.blogspot.com/">hi</a> </body> </html> Here as you can see the HTML tag and the

COMMENTS IN HTML?INLINE, MULTILINE.

 COMMENTS HTML                                                                     The Comments are added to the web page using HTML , using this can explain in more detail and insert it in the source code. Through this blog we are going to cover the different types of comments that is the single line, multiline, and the <comment> also. Shortcut for the comment in HTML it might be in Windows or Linux it ctrl+/. So what is the way to locate the comment it is through the console or by seeing the page source. SYNTAX FOR COMMENTS  In order to know how to write the correct format of the comments is <!--hi-->  in this firstly angular brackets are the most important to be noted.  At the starting the exclamatory mark and at the end there is no exclamatory. Immediately if you want to add the comment you do it with two forward slashes we can do it. TYPES OF COMMENTS SINGLE LINE COMMENT: -Through this type of comment we can add more amount of information to the section of code. <ht

HTML FORMATTING ELEMENTS?DELETE, BOLD.

 HTML FORMATTING ELEMENTS                                                                 bold There are different formatting elements in HTML there are bold, delete, italic, emphasize, and make smaller this will add a new feature to the web page that you are creating. The formatting elements are designed to display the text on the monitor there are so many syntax for bold which is <b> and italic with <em>. So what we say to be the HTML element means that starts with the open tag, and closes with the ending tag. Why formatting elements are important in HTML because it makes our web page look attractive to the audience. BOLD THE TEXT As we know that how important is bolding the text when something you want to highlight at that time can make use of bold elements and make it look audience attractive. We denote the bold tag with  open tag   <b> and close tag  </b>. <html> <body> <p>This text is normal.</p> <p><b>This text </b&g