Skip to main content

Posts

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
Recent posts

WHAT IS CSS LANGUAGE? TYPES, COMMENTS, BORDERS

 WHAT IS CSS Css CSS is Cascading style sheets  which is a programming language, that is used to make the website more presentable to the audience.  To make the website good we should apply all these CSS styles to it so that it could reach a greater audience. In  CSS we can add margins, and colors to the text, height, width, and tables, these are some of the things we can do through CSS. There are different software used for CSS Bootstrap, Visual Studio Code, and Notepad++ in each of these there are different ways of saving the code. Easily if I say that difference between HTML and CSS is that, HTML makes the outer appearance of the home, CSS tells which color we need to add or what furniture is what. BENEFITS USING CSS Helps the page load fast :- HTML takes more time to load the test whereas the css takes less time less time because the code will be in less total. Maintain:-  HTML if you want to make any setting you need to change the whole code whereas in CSS just change code at a pa

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

HTML STYLES?FONT SIZE,BACKGROUND COLOUR

 HTML STYLES                                                                  background colour In HTML  have different styles like background color, font size, text color, and text alignment in this blog we are going to study different HTML styles. HTML styles that are used to change or else change whatever existing HTML tags. We have different types of styles internal styling, which is nothing but using this inside the html element. Internal means utilizing it in the head section of the HTML code, external is to apply it externally to the CSS file. BACKGROUND COLOUR We will use background color as a style in HTML for webpages to give color to the web pages of different colors like blue, red, black, etc. and there will be a syntax for giving background color. <body style="background-color: green;"> This is how we give the background color firstly in the body write style keyword, equal to and within the double quotes write background word.  Dash color semicolon write

WHAT IS HTML?HEADING TAGS

 WHAT IS HTML?                                                                 HTML  stands for hypertext markup language this is the full form of HTML. HTML is an important markup language for creating web pages. If we see any website then click the link we go to another page which is known as the web page,           combination of these web pages is known as a websit e . It is known by the name html because it is used to make the content in it more presentable. The first line of any html code is <!doctype> which is the most important step we could say. Tin Berners Lee has created the HTML programming language, and version 4.0 has become the most popular one. BASIC PROGRAM IN HTML <html> <head> <title>page title</title> <body> <h1>hi</h1> </body> </html> <html>  is the main element of the HTML page, <head>  it contains the information of the HTML page. <title>  is also an element that specifies a title for a

FUNCTIONS IN C?CLASSIFICATION, PARAMETERS, LOCAL VARIABLE.

 WHAT IS A FUNCTION                                                                         function A self-contained, named block of code that performs the specific task when called is nothing but a function. Note:-functions are the task performers in C projects.  FUNCTIONS CLASSIFICATION We have 2 types of functions they are user-defined functions and library functions. A pre-created function that comes with C installation is nothing but a library function, For eg:- print () and scanf(). Library functions are ready-made named code blocks. We need not create them, Just use them in our programs. We can make use of this library function by making the library function available to the program and the next step is calling the library function. Our own created function which is the program-created function is nothing but a user-defined function , eg- the main function is the example of a user-defined function. BENEFITS OF USER-DEFINED FUNCTION There are many benefits of user-defined func