Skip to main content

Posts

Showing posts from October, 2021

How to create a nested tables in html

In this article how to create a nested table in HTML. And HTML tables are helpful to structure the content and highlight the content detailed and its form of rows and columns. But If sometimes, we need to add a table within a table for structure helps of HTML and its functionality in nesting loops tables. Read also:   Free Google Tools for SEO Success Ultimate Guide : Google Search Console Dofollow Backlinks: 5 Benefit for you Website SEO Local SEO is important for small Businesses Schema Markup and How can you use schema markup for seo Backlinks is it a Raking factor for SEO  How to use Nested loop in HTML and JavaScript Html tags used for table is <table> tag. The table is most-up of the outer table. inner table is known as nested tables. This thing is making a special to construct the table beautiful and detailed. The nested table is a concept used for creating bigger and complex tables. Most of the complex tables are using nested tables to better control the ...

How to Select from multiple tables in sql

 Select From Multiple Tables In SQL    In this article, we are going to demonstrate how to select from multiple tables in SQL .    SQL command in this statement is used to retrieve fields and records from multiple tables. we are need going to use a join query to get data from multiple tables.  First, we are going to Create a Database and I named as sqlinner and change the master database to sqlinner database using the below commands. create database sqlinner; use sqlinner; Let us we are taking three tables, two tables of brands named brand and brand price and the third table should be named as a stock table. create table brand (brandId int primary key identity(1,1) not null,name varchar(20) not null, brand varchar(20) not null,Available varchar(20) not null); select * from brand; create table brandprice(brandId int primary key identity(1,1)not null,price varchar(20) not null); select * from brandpri...

What is difference between marquee behavior and marquee loop

 Difference between Marquee Behavior and Marquee Loop   Marquee Behaviour : Marquee behaviour is the value of an attribute to specifies how the text or link should be move in html . They are three types on how to manage these values and examples: Alternate   Slide Scroll      Alternate: An Alternate behaviour text or link should be between sliding and scrolling. It will be move on both sides. one end to another end and move same to another end direction. Slide: The slide behaviour is used to text or line move one end to another end once. When the text or link reaches the other end the slide will be stopped. Scroll: The scroll behaviour method is used to scroll completely across and start again like news and scroll is the default method in the marquee. <!DOCTYPE html> <html> <head> <title>Marquee Behaviour</title> <style> .main { width:960px; text-align: center; m...