site stats

Table with div tags

WebMar 26, 2016 · Using the Div Tag to Create Tables By: John Paul Mueller Updated: 03-26-2016 HTML, XHTML and CSS For Dummies Explore Book Buy On Amazon Creating tables …WebThis is a simple tool which allows you to convert a HTML table into a div based one. This modernised markup up is suited to make your website mobile friendly and easier to style using CSS. While this function is generally good at converting HTML tables, extremely messy code could yield an unexpected output.

Using Divs Inside Tables CSS-Tricks - CSS-Tricks

WebMar 29, 2024 · Developing HTML Email Ghost Tables. As HTML email ghost tables are only rendered by versions of Microsoft Outlook, you only need to take versions of Microsoft Outlook into account when developing their elements, attributes, and styles. WebTwo sections in a document:bas ek tamanna hai https://carriefellart.com

WWF The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the …WebMar 13, 2024 · There are no native methods for sorting the rows (WebHTML Div Based Layout Using theWeb电子商务师模拟试题含答案ft电子商务师考试试题含答案一单项选择题1在电子商务安全保密系统中,数字签名技术有着特别重要的地位,在中不会用到数字签名技术.C259A源鉴别B完整性服务C跟踪服务D不可否认服务 2商店生成系统中最重要的模块是 BAbaseku

How create table without using HTML div tag - javatpoint Creating Tables with DIV tag - My Module Design HTML Div Tag - GeeksforGeeks HTML Div – What is a Div Tag and How to Style it with CSS : The Table element - HTML: HyperText Markup Language MDN : The Table element - HTML: HyperText Markup Language MDN : The Table element - HTML: HyperText Markup Language MDN html - Why are people making tables with divs? - Software HTML Table to Div Converter Bootstrap 4 Tables - GeeksforGeeks tag - GeeksForGeeksWebApr 24, 2024 · A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.https://www.geeksforgeeks.org/how-create-table-without-using-table-tag/ WebThe div tag is generally used by web developers to group HTML elements together and apply CSS styles to many elements at once. For example: If you wrap a set of paragraph elements into a div element so you can take the advantage of CSS styles and apply font style to all paragraphs at once instead of coding the same style for each paragraph element.https://www.javatpoint.com/html-div-tag WebJun 22, 2024 · Creating a table using DIV tags is pretty easy! Once again, just like I did last week, we will be using CSS to create a table. The code below is what you will use to create …https://mymoduledesign.com/2024/06/22/creating-tables-with-div-tag/ WebFeb 17, 2024 · The div tag is known as Division tag. The div tag is used in HTML to make divisions of content in the web page like (text, images, header, footer, navigation bar, etc). …https://www.geeksforgeeks.org/div-tag-html/ WebSep 7, 2024 · Use div in Web Layouts You'll primarily use the div tag to group similar content together so you can style it easily. A great example of this is using div to group different sections of a webpage together. You can put together the header, nav, sections, and footer of a page in an individual div tag so they can be styled together.https://www.freecodecamp.org/news/html-div-what-is-a-div-tag-and-how-to-style-it-with-css/ WebMar 13, 2024 · There are no native methods for sorting the rows (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and Node.appendChild (), you can implement your own sort () function to sort an HTMLCollection ofhttps://developer.mozilla.org/en-US/docs/Web/HTML/Element/table elements. In the below example, you can see such an example.https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table https://softwareengineering.stackexchange.com/questions/277778/why-are-people-making-tables-with-divs WebDiv Table Table to Div Converter Paste your table in the visual editor or the HTML code in the source editor and press the big button! Convert ↶ Demo HTML indent x 1 phttps://divtable.com/converter/ WebApr 28, 2024 · Output: Colored table: Bootstrap provides a number of contextual classes that can be used to color the entire row or a single cell of a table. These classes should be used with a light table and not with a dark table for a better appearance. The list of contextual classes is given below. table-primary. table-secondary. table-success. table-danger.https://www.geeksforgeeks.org/bootstrap-4-tables/

Category:HTML table tag - W3School

Tags:Table with div tags

Table with div tags

html - Responsive Div Table - Stack Overflow

<div><div>

Table with div tags

Did you know?

WebAug 15, 2007 · What you need to do is make sure the div is inside an actual table cell, a td or th element, so do that: I'm text in a div. And you should … WebMar 16, 2024 · The Tag: is an HTML5 element that is used to indicate a citation or reference to a source within a webpage. It can be used to provide additional information about a quote or to indicate the author or source of a piece of information. Here’s an example of how to use the element: HTML.

tags, having class “table-responsive” within the opening tag. Syntax: ... Example: The example describe the “table-responsive” Class. WebThis class gives each one of the div including your images a width of 25% when the screen is larger then 992px, consequently each "row" div will have 4 column at this set width. When the screen is smaller then 992px, but larger then 750px I applied col-sm-6 that let the screen just have 2 Images for row.WebNov 2, 2011 · Websites written using DIV/CSS are considered to be coded cleaner on the other hand improperly nested TABLEs can increase page size and weight. DIV tags are …WebJul 22, 2024 · Step 1: The first step will be for scraping we need to import beautifulsoup module and get the request of the website we need to import the requests module. from bs4 import BeautifulSoup import requests Step 2: The second step will be to request the URL call get method. page=requests.get (sample_website)WebThe tag defines a division or a section in an HTML document. The tag is used as a container for HTML elements - which is then styled with CSS or manipulated with …WebAn HTML table consists of one element and one or more , , and elements. The element defines a table row, the element defines a table header, …WebThis is a simple tool which allows you to convert a HTML table into a div based one. This modernised markup up is suited to make your website mobile friendly and easier to style using CSS. While this function is generally good at converting HTML tables, extremely messy code could yield an unexpected output.WebMar 31, 2015 · s are used to create the tables instead of tags for a couple of reasons. If WebApr 8, 2009 · Table contains different tags: the table tag being the wrapper, tr for each row and td for each cell. The thead and tbody tags are not used for structural purposes because they add semantic meaning to the …WebThe first td tag contains a table with 21 rows, each having 1 td tag with css height = 38px. The second td tag contains 21 div tags. Each div style is: 'position:relative; top: ( 38 * row num) px; height:1px; width:200px; border:none; padding:0; margin:0; background:red;' The lines (div tags) don't line up with the tops of the td tags in the ...Web电子商务师模拟试题含答案ft电子商务师考试试题含答案一单项选择题1在电子商务安全保密系统中,数字签名技术有着特别重要的地位,在中不会用到数字签名技术.C259A源鉴别B完整性服务C跟踪服务D不可否认服务 2商店生成系统中最重要的模块是 BAWebTwo sections in a document: WWF The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the …WebMar 13, 2024 · There are no native methods for sorting the rows ( elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and …WebMar 23, 2010 · Tables are still quite acceptable for displaying layout elements that are in a tabular layout format, and in fact can be better than divs with such. layout. However, divs …WebAug 8, 2024 · div Creates a section (e.g., “division”) of an HTML document. divs provide a useful hook for CSS styling. You can use the helper function div. tags$code("This text will be displayed as computer code.") ## This text will be displayed as computer code. em Creates emphasized (e.g., italicized) text. You can use the helper …WebThe div tag is mainly used for grouping of tags and elements like images and their descriptions. In web pages uses many HTML tags to create content. All HTML tags are …WebJquery loop through table trs and append div tag to current tr Sanganabasu 2013-02-22 11:18:17 1849 1 jquery / html / appendWebAug 15, 2007 · What you need to do is make sure the div is inside an actual table cell, a td or th element, so do that: And you should …Web14. HTML tables are appropriate for representing tabular data. Just don't use tables for general layout. Tables are still better for tabular data though. UPDATE: Going forward, you may want to consult the CSS3 Grid Layout specification: http://www.w3.org/TR/css3-grid …WebAug 9, 2024 · To create a div tag, you can run: tags$div() ## You can call some of the most popular tags with helper functions (that wrap the appropriate tags functions). For example, the helper function code calls …WebBut when you add a div inside the table-cell and give it a height the content of that inner DIV will be at the top. Check this jsfiddle. The overflow:hidden; works fine, but if you shorten the content so that it's only one line, this line won't be centered vertically. The solution is not to add a DIV inside the table-cell but rather outside.WebThe 4 simple steps: Paste your table in the editor Make sure the cleaning option Replace table tags with divs is enabled Clean the document Style your tables using the CSS belowWebMar 1, 2024 · Step 1: Create Master Div for the Table Step 2: Add a Table Caption Step 3: Create a Table Header Row Step 4: Add Table Header Cells Step 5: Create the Table Body …WebHTML Layout Elements. HTML has several semantic elements that define the different parts of a web page: - Defines a header for a document or a section. - Defines a set of navigation links. …WebHTML Div Based Layout Using the elements is the most common method of creating layouts in HTML. The (stands for division) element is used for marking out a block of content, or set of other elements inside an HTML document. It can contain further other div elements if required.WebMar 16, 2024 · The Tag: is an HTML5 element that is used to indicate a citation or reference to a source within a webpage. It can be used to provide additional information about a quote or to indicate the author or source of a piece of information. Here’s an example of how to use the element: HTML. .WebThe global attributes are attributes that can be used with all HTML elements. Specifies one or more classnames for an element (refers to a class in a style sheet) Specifies whether the content of an element is editable or not. Specifies that an element is not yet, or is no longer, relevant. Specifies whether the element is to have its spelling ...WebApr 24, 2024 · A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.WebThe div tag is generally used by web developers to group HTML elements together and apply CSS styles to many elements at once. For example: If you wrap a set of paragraph elements into a div element so you can take the advantage of CSS styles and apply font style to all paragraphs at once instead of coding the same style for each paragraph element.WebJun 22, 2024 · Creating a table using DIV tags is pretty easy! Once again, just like I did last week, we will be using CSS to create a table. The code below is what you will use to create …WebFeb 17, 2024 · The div tag is known as Division tag. The div tag is used in HTML to make divisions of content in the web page like (text, images, header, footer, navigation bar, etc). …WebSep 7, 2024 · Use div in Web Layouts You'll primarily use the div tag to group similar content together so you can style it easily. A great example of this is using div to group different sections of a webpage together. You can put together the header, nav, sections, and footer of a page in an individual div tag so they can be styled together.WebMar 13, 2024 · There are no native methods for sorting the rows ( elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and Node.appendChild (), you can implement your own sort () function to sort an HTMLCollection of elements. In the below example, you can see such an example.WebDiv Table Table to Div Converter Paste your table in the visual editor or the HTML code in the source editor and press the big button! Convert ↶ Demo HTML indent x 1 p tags are used then you need to override the browser default styles and …WebApr 28, 2024 · Output: Colored table: Bootstrap provides a number of contextual classes that can be used to color the entire row or a single cell of a table. These classes should be used with a light table and not with a dark table for a better appearance. The list of contextual classes is given below. table-primary. table-secondary. table-success. table-danger. I'm text in a div.WebJul 22, 2024 · Step 1: The first step will be for scraping we need to import beautifulsoup module and get the request of the website we need to import the requests module. from bs4 import BeautifulSoup import requests Step 2: The second step will be to request the URL call get method. page=requests.get (sample_website)

WebCSS for Div Tables Classic HTML tables don't require an additional stylesheet in order to display the grid layout but Div tags do. The generator will provide you with the required CSS styles that you need to include in …WebApr 8, 2009 · Table contains different tags: the table tag being the wrapper, tr for each row and td for each cell. The thead and tbody tags are not used for structural purposes because they add semantic meaning to the …

WebAn HTML table consists of one element and one or more , , and elements. The element defines a table row, the element defines a table header, …WebThis is a simple tool which allows you to convert a HTML table into a div based one. This modernised markup up is suited to make your website mobile friendly and easier to style using CSS. While this function is generally good at converting HTML tables, extremely messy code could yield an unexpected output.WebMar 31, 2015 · s are used to create the tables instead of tags for a couple of reasons. If WebApr 8, 2009 · Table contains different tags: the table tag being the wrapper, tr for each row and td for each cell. The thead and tbody tags are not used for structural purposes because they add semantic meaning to the …WebThe first td tag contains a table with 21 rows, each having 1 td tag with css height = 38px. The second td tag contains 21 div tags. Each div style is: 'position:relative; top: ( 38 * row num) px; height:1px; width:200px; border:none; padding:0; margin:0; background:red;' The lines (div tags) don't line up with the tops of the td tags in the ...Web电子商务师模拟试题含答案ft电子商务师考试试题含答案一单项选择题1在电子商务安全保密系统中,数字签名技术有着特别重要的地位,在中不会用到数字签名技术.C259A源鉴别B完整性服务C跟踪服务D不可否认服务 2商店生成系统中最重要的模块是 BAWebTwo sections in a document: WWF The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the …WebMar 13, 2024 · There are no native methods for sorting the rows ( elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and …WebMar 23, 2010 · Tables are still quite acceptable for displaying layout elements that are in a tabular layout format, and in fact can be better than divs with such. layout. However, divs …WebAug 8, 2024 · div Creates a section (e.g., “division”) of an HTML document. divs provide a useful hook for CSS styling. You can use the helper function div. tags$code("This text will be displayed as computer code.") ## This text will be displayed as computer code. em Creates emphasized (e.g., italicized) text. You can use the helper …WebThe div tag is mainly used for grouping of tags and elements like images and their descriptions. In web pages uses many HTML tags to create content. All HTML tags are …WebJquery loop through table trs and append div tag to current tr Sanganabasu 2013-02-22 11:18:17 1849 1 jquery / html / appendWebAug 15, 2007 · What you need to do is make sure the div is inside an actual table cell, a td or th element, so do that: And you should …Web14. HTML tables are appropriate for representing tabular data. Just don't use tables for general layout. Tables are still better for tabular data though. UPDATE: Going forward, you may want to consult the CSS3 Grid Layout specification: http://www.w3.org/TR/css3-grid …WebAug 9, 2024 · To create a div tag, you can run: tags$div() ## You can call some of the most popular tags with helper functions (that wrap the appropriate tags functions). For example, the helper function code calls …WebBut when you add a div inside the table-cell and give it a height the content of that inner DIV will be at the top. Check this jsfiddle. The overflow:hidden; works fine, but if you shorten the content so that it's only one line, this line won't be centered vertically. The solution is not to add a DIV inside the table-cell but rather outside.WebThe 4 simple steps: Paste your table in the editor Make sure the cleaning option Replace table tags with divs is enabled Clean the document Style your tables using the CSS belowWebMar 1, 2024 · Step 1: Create Master Div for the Table Step 2: Add a Table Caption Step 3: Create a Table Header Row Step 4: Add Table Header Cells Step 5: Create the Table Body …WebHTML Layout Elements. HTML has several semantic elements that define the different parts of a web page: - Defines a header for a document or a section. - Defines a set of navigation links. …WebHTML Div Based Layout Using the elements is the most common method of creating layouts in HTML. The (stands for division) element is used for marking out a block of content, or set of other elements inside an HTML document. It can contain further other div elements if required.WebMar 16, 2024 · The Tag: is an HTML5 element that is used to indicate a citation or reference to a source within a webpage. It can be used to provide additional information about a quote or to indicate the author or source of a piece of information. Here’s an example of how to use the element: HTML. .WebThe global attributes are attributes that can be used with all HTML elements. Specifies one or more classnames for an element (refers to a class in a style sheet) Specifies whether the content of an element is editable or not. Specifies that an element is not yet, or is no longer, relevant. Specifies whether the element is to have its spelling ...WebApr 24, 2024 · A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.WebThe div tag is generally used by web developers to group HTML elements together and apply CSS styles to many elements at once. For example: If you wrap a set of paragraph elements into a div element so you can take the advantage of CSS styles and apply font style to all paragraphs at once instead of coding the same style for each paragraph element.WebJun 22, 2024 · Creating a table using DIV tags is pretty easy! Once again, just like I did last week, we will be using CSS to create a table. The code below is what you will use to create …WebFeb 17, 2024 · The div tag is known as Division tag. The div tag is used in HTML to make divisions of content in the web page like (text, images, header, footer, navigation bar, etc). …WebSep 7, 2024 · Use div in Web Layouts You'll primarily use the div tag to group similar content together so you can style it easily. A great example of this is using div to group different sections of a webpage together. You can put together the header, nav, sections, and footer of a page in an individual div tag so they can be styled together.WebMar 13, 2024 · There are no native methods for sorting the rows ( elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and Node.appendChild (), you can implement your own sort () function to sort an HTMLCollection of elements. In the below example, you can see such an example.WebDiv Table Table to Div Converter Paste your table in the visual editor or the HTML code in the source editor and press the big button! Convert ↶ Demo HTML indent x 1 p tags are used then you need to override the browser default styles and …WebApr 28, 2024 · Output: Colored table: Bootstrap provides a number of contextual classes that can be used to color the entire row or a single cell of a table. These classes should be used with a light table and not with a dark table for a better appearance. The list of contextual classes is given below. table-primary. table-secondary. table-success. table-danger. I'm text in a div.

WebJquery loop through table trs and append div tag to current tr Sanganabasu 2013-02-22 11:18:17 1849 1 jquery / html / appendbase kuat th 7elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and …base kuat th 12WebMar 1, 2024 · Step 1: Create Master Div for the Table Step 2: Add a Table Caption Step 3: Create a Table Header Row Step 4: Add Table Header Cells Step 5: Create the Table Body …bas ek pal remixWebAug 9, 2024 · To create a div tag, you can run: tags$div() ## You can call some of the most popular tags with helper functions (that wrap the appropriate tags functions). For example, the helper function code calls …bas ekspres perdana sungaiWebMar 31, 2015 · s are used to create the tables instead of tags for a couple of reasons. If WebApr 8, 2009 · Table contains different tags: the table tag being the wrapper, tr for each row and td for each cell. The thead and tbody tags are not used for structural purposes because they add semantic meaning to the …WebThe first td tag contains a table with 21 rows, each having 1 td tag with css height = 38px. The second td tag contains 21 div tags. Each div style is: 'position:relative; top: ( 38 * row num) px; height:1px; width:200px; border:none; padding:0; margin:0; background:red;' The lines (div tags) don't line up with the tops of the td tags in the ...Web电子商务师模拟试题含答案ft电子商务师考试试题含答案一单项选择题1在电子商务安全保密系统中,数字签名技术有着特别重要的地位,在中不会用到数字签名技术.C259A源鉴别B完整性服务C跟踪服务D不可否认服务 2商店生成系统中最重要的模块是 BAWebTwo sections in a document: WWF The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the …WebMar 13, 2024 · There are no native methods for sorting the rows ( elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and …WebMar 23, 2010 · Tables are still quite acceptable for displaying layout elements that are in a tabular layout format, and in fact can be better than divs with such. layout. However, divs …WebAug 8, 2024 · div Creates a section (e.g., “division”) of an HTML document. divs provide a useful hook for CSS styling. You can use the helper function div. tags$code("This text will be displayed as computer code.") ## This text will be displayed as computer code. em Creates emphasized (e.g., italicized) text. You can use the helper …WebThe div tag is mainly used for grouping of tags and elements like images and their descriptions. In web pages uses many HTML tags to create content. All HTML tags are …WebJquery loop through table trs and append div tag to current tr Sanganabasu 2013-02-22 11:18:17 1849 1 jquery / html / appendWebAug 15, 2007 · What you need to do is make sure the div is inside an actual table cell, a td or th element, so do that: And you should …Web14. HTML tables are appropriate for representing tabular data. Just don't use tables for general layout. Tables are still better for tabular data though. UPDATE: Going forward, you may want to consult the CSS3 Grid Layout specification: http://www.w3.org/TR/css3-grid …WebAug 9, 2024 · To create a div tag, you can run: tags$div() ## You can call some of the most popular tags with helper functions (that wrap the appropriate tags functions). For example, the helper function code calls …WebBut when you add a div inside the table-cell and give it a height the content of that inner DIV will be at the top. Check this jsfiddle. The overflow:hidden; works fine, but if you shorten the content so that it's only one line, this line won't be centered vertically. The solution is not to add a DIV inside the table-cell but rather outside.WebThe 4 simple steps: Paste your table in the editor Make sure the cleaning option Replace table tags with divs is enabled Clean the document Style your tables using the CSS belowWebMar 1, 2024 · Step 1: Create Master Div for the Table Step 2: Add a Table Caption Step 3: Create a Table Header Row Step 4: Add Table Header Cells Step 5: Create the Table Body …WebHTML Layout Elements. HTML has several semantic elements that define the different parts of a web page: - Defines a header for a document or a section. - Defines a set of navigation links. …WebHTML Div Based Layout Using the elements is the most common method of creating layouts in HTML. The (stands for division) element is used for marking out a block of content, or set of other elements inside an HTML document. It can contain further other div elements if required.WebMar 16, 2024 · The Tag: is an HTML5 element that is used to indicate a citation or reference to a source within a webpage. It can be used to provide additional information about a quote or to indicate the author or source of a piece of information. Here’s an example of how to use the element: HTML. .WebThe global attributes are attributes that can be used with all HTML elements. Specifies one or more classnames for an element (refers to a class in a style sheet) Specifies whether the content of an element is editable or not. Specifies that an element is not yet, or is no longer, relevant. Specifies whether the element is to have its spelling ...WebApr 24, 2024 · A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.WebThe div tag is generally used by web developers to group HTML elements together and apply CSS styles to many elements at once. For example: If you wrap a set of paragraph elements into a div element so you can take the advantage of CSS styles and apply font style to all paragraphs at once instead of coding the same style for each paragraph element.WebJun 22, 2024 · Creating a table using DIV tags is pretty easy! Once again, just like I did last week, we will be using CSS to create a table. The code below is what you will use to create …WebFeb 17, 2024 · The div tag is known as Division tag. The div tag is used in HTML to make divisions of content in the web page like (text, images, header, footer, navigation bar, etc). …WebSep 7, 2024 · Use div in Web Layouts You'll primarily use the div tag to group similar content together so you can style it easily. A great example of this is using div to group different sections of a webpage together. You can put together the header, nav, sections, and footer of a page in an individual div tag so they can be styled together.WebMar 13, 2024 · There are no native methods for sorting the rows ( elements) of an HTML table. But using Array.prototype.slice (), Array.prototype.sort (), Node.removeChild (), and Node.appendChild (), you can implement your own sort () function to sort an HTMLCollection of elements. In the below example, you can see such an example.WebDiv Table Table to Div Converter Paste your table in the visual editor or the HTML code in the source editor and press the big button! Convert ↶ Demo HTML indent x 1 p tags are used then you need to override the browser default styles and …WebApr 28, 2024 · Output: Colored table: Bootstrap provides a number of contextual classes that can be used to color the entire row or a single cell of a table. These classes should be used with a light table and not with a dark table for a better appearance. The list of contextual classes is given below. table-primary. table-secondary. table-success. table-danger. I'm text in a div.basekyWebMar 23, 2010 · Tables are still quite acceptable for displaying layout elements that are in a tabular layout format, and in fact can be better than divs with such. layout. However, divs …swarovski x5i 5 25x56WebBut when you add a div inside the table-cell and give it a height the content of that inner DIV will be at the top. Check this jsfiddle. The overflow:hidden; works fine, but if you shorten the content so that it's only one line, this line won't be centered vertically. The solution is not to add a DIV inside the table-cell but rather outside.bas ek zara sath ho tera mp3 download