Posts

What is html iframe

Today's blog is about html iframe.so guys if you find this interesting please like and subcribe. Iframe Syntax An HTML iframe is defined with the  <iframe>  tag: < iframe  src =" URL " > < /iframe > The  src  attribute specifies the URL (web address) of the inline frame page. Iframe - Set Height and Width Use the  height  and  width  attributes to specify the size of the iframe. The attribute values are specified in pixels by default, but they can also be in percent (like "80%"). Example < iframe src ="demo_iframe.htm" height ="200" width ="300" > < /iframe > Iframe - Remove the Border By default, an iframe has a border around it. To remove the border, add the  style attribute and use the CSS  border  property: Example < iframe src ="demo_iframe.htm" style ="border:none;" > < /iframe > With CSS, you can also change the size, style an

How to give better look to your page using HTML Layouts(HTML5it)

HTML Layouts A webpage layout is very important to give better look to your website. It takes considerable time to design a website's layout with great look and feel. Now a days, all modern websites are using CSS and Javascript based framework to come up with responsive and dynamic websites but you can create a good layout using simple HTML tables or division tags in combination with other formatting tags. This chapter will give you few examples on how to create a simple but working layout for your webpage using pure HTML and its attributes. HTML Layout - Using Tables The simplest and most popular way of creating layouts is using HTML <table> tag. These tables are arranged in columns and rows, so you can utilize these rows and columns in whatever way you like. Example For example, the following HTML layout example is achieved using a table with 3 rows and 2 columns but the header and footer column spans both columns using the colspan attribute: <!DOCTYPE

What is html css

IN this post we will know about html CSS. So lets began guys. HTML  Styles - CSS Posted by:-sidhant If you guys found our post helpfull please like and subscribe our blog CSS = Styles and Colors Manipulate Text Colors,   Boxes Styling HTML with CSS CSS  stands for  C ascading  S tyle  S heets. CSS describes  how HTML elements are to be displayed on screen, paper, or in other media . CSS  saves a lot of work . It can control the layout of multiple web pages all at once. CSS can be added to HTML elements in 3 ways: Inline  - by using the style attribute in HTML elements Internal  - by using a <style> element in the <head> section External  - by using an external CSS file The most common way to add CSS, is to keep the styles in separate CSS files. However, here we will use inline and internal styling, because this is easier to demonstrate, and easier for you to try it yourself. Inline CSS An inline CSS is used to apply a unique st