Today's Video is on Target Attribute in #Anchortag #HTML..
https://youtu.be/qJln8dKP2Kw
#HTMLCSS #FrontendPlaylist #Mustlearn #moretocome..
https://youtu.be/qJln8dKP2Kw
#HTMLCSS #FrontendPlaylist #Mustlearn #moretocome..
YouTube
Target Attribute in Anchor Tag | Anchor Tag in HTML | HTML | Codegnan
Where to display the linked URL, as the name for a browsing context. The following keywords have special meanings for where to load the URL
_self- the current browsing context. (Default) _blank-- usually a new tab, but users can configure browsers to open…
_self- the current browsing context. (Default) _blank-- usually a new tab, but users can configure browsers to open…
Today's Video is on #Linking to a #Specificregion using a tag
#HTML #Mustlearn #FrontendPlaylist..
https://youtu.be/d-aS6go9RKA
#HTML #Mustlearn #FrontendPlaylist..
https://youtu.be/d-aS6go9RKA
YouTube
Linking to a Specific Region using a Tag | Anchor Tag | HTML | Codegnan
The default behavior is associated with a link in the retrieval of another Web resource. This behavior is commonly and implicitly obtained by selecting the link (e.g., by clicking, through keyboard input, etc.) Use the id attribute (id="value") to define…
Today's Video is on Understanding #Attributes of Table Tag..
#tabletag #attributes.. #HTML #Frontendplaylist...
https://youtu.be/Zs65h30ZQvc
#tabletag #attributes.. #HTML #Frontendplaylist...
https://youtu.be/Zs65h30ZQvc
YouTube
Attributes of Table tag | Table Tag | HTML |Frontend Playlist
We are having different types of attributes for the table tag like border, cellpadding, cellspacing, rowspan, colspan. Cell padding is the space between the cell edges and the cell content. By default, the padding is set to 0. Cell spacing is the space between…
Today's Video is on Displaying Symbols and Emojis in a Webpage..
#FrontendPlaylist #Symbols #Emojis..
https://youtu.be/X0QcZjjpRUE
#FrontendPlaylist #Symbols #Emojis..
https://youtu.be/X0QcZjjpRUE
YouTube
Displaying Symbols and Emoji's in a Webpage | HTML | Frontend Development Playlist | Emojis
Using Symbols and Emojis are playing a crucial role in Web development. HTML symbols like mathematical operators, arrows, technical symbols, and shapes, are not present on a normal keyboard. To add these symbols to an HTML page, you can use the HTML entity…
Today's Video is on Creating Navigation for a Website.. Project Part-1
#Navigation #HTML #FrontendPlaylist
https://youtu.be/JCgJcwr4kN8
#Navigation #HTML #FrontendPlaylist
https://youtu.be/JCgJcwr4kN8
YouTube
Creating a Navigation for a Website | HTML | FrontendPlaylist | Project Part-1
In this project, we are going to use the required elements like our anchor tag a, with attribute href, and the value for href is # so that we can use the link and open the same page itself without jumping into other pages. After that, we are seeing a cart…
Today's Video is on Building a #Responsive Webpage using #Mediaqueries Project Part -2
#HTMLTags #FrontendPlaylist #Responsivewebpage
https://youtu.be/9JgHy7Zfra8
#HTMLTags #FrontendPlaylist #Responsivewebpage
https://youtu.be/9JgHy7Zfra8
YouTube
Building a Responsive Webpage using Media Queries | HTML | FrontendPlaylist | Project Part - 2
Now we are going to continue with the previous part. Splitting the code into different parts as a section manner. Due to that, we can easily understand the code on the development side. Each and every section is going to carry a particular template.
Once…
Once…
Today's Video is on #Introduction to CSS, Understand the difference HTML and CSS..
#ImportanceofCSS #Frontendplaylist.
https://youtu.be/22AKjbISjrs
#ImportanceofCSS #Frontendplaylist.
https://youtu.be/22AKjbISjrs
YouTube
Introduction to CSS | Understanding the Importance of CSS | FrontendPlaylist
The web today is almost unrecognizable from the early days of white pages with lists of blue links. Now, sites are designed with complex layouts, unique fonts, and customized color schemes. This course will show you the basics of Cascading Style Sheets (CSS3).…
Today's Video is on Different types of Selectors in CSS..
#CSSSelectors #CSS #Frontendplaylist
https://youtu.be/Bm8RSDu5lZQ
#CSSSelectors #CSS #Frontendplaylist
https://youtu.be/Bm8RSDu5lZQ
YouTube
Different types of Selectors in CSS | CSS Selectors | FrontendPlaylist
CSS selectors define the elements to which a set of CSS rules apply.
We can divide CSS selectors into five categories:
1)Simple selectors (select elements based on name, id, class)
2)Combinator selectors (select elements based on a specific relationship…
We can divide CSS selectors into five categories:
1)Simple selectors (select elements based on name, id, class)
2)Combinator selectors (select elements based on a specific relationship…
Today's Video is on #Simple Selectors
#SimpleSelectors #CSSSelectors #FrontendPlaylist
https://youtu.be/ituPb2mw6ws
#SimpleSelectors #CSSSelectors #FrontendPlaylist
https://youtu.be/ituPb2mw6ws
YouTube
Simple Selectors | CSS Selectors | Frontend Playlist
Simple selectors (select elements based on name, id, class). An element selector will select an HTML element by name. Using CSS we can select this p element, and style it however we like.
Let’s say we want to give the text a red color.
We’d do this by…
Let’s say we want to give the text a red color.
We’d do this by…
Today's Video is on #ID and #ClassSelectors
#SimpleSelectors #CSS #FrontendPlaylist
https://youtu.be/NTxleUJ7vJY
#SimpleSelectors #CSS #FrontendPlaylist
https://youtu.be/NTxleUJ7vJY
YouTube
ID and Class Selectors | Simple Selectors in CSS | CSS Selectors | Frontend Playlist
Every HTML element has two attributes that we commonly use when associating our styling to a specific element, they are class and id.
And as we’ll see, they are both used in a similar manner, however, there’s a fundamental difference between the two: Within…
And as we’ll see, they are both used in a similar manner, however, there’s a fundamental difference between the two: Within…