Ascenders Webtech is the Best web design company in Chennai and Mayiladuthurai
Don't wanna be here? Send us removal request.
Video
youtube
HTML and CSS for beginners 1 - Html inner page link
0 notes
Video
youtube
In this video, we going to learn about HTML Links
All the websites contain different kinds of links that redirect you to other pages or allow you to navigate to a specific part of your webpage. The HTML links are called hyperlinks. They are defined using the (a) tag.
The HTML links can be applied to a phrase, an image, a word or any HTML elements.
The predefined color of links in HTML is given below:
active links: underlined and red
visited links: underlined and purple
unvisited links: underlined and blue
0 notes
Video
youtube
HTML and CSS for beginners 9 - Html images
Images are the visual appearance of the web pages by making them more good looks and colorful.
The <img /> is a tag that is used to insert images in HTML pages. It is an empty element and contains attributes only.
0 notes
Video
youtube
HTML and CSS for beginners 8 - HTML Formatting
In this episode, we will learn about HTML Formatting
HTML Formatting is a process of formatting text for a better look and feel. HTML provides us the ability to format text without using CSS. There are many formatting tags in HTML. These tags are used to make text bold, italicized, or underlined. There are almost 14 options available that how text appears in HTML and XHTML.
In HTML the formatting tags are divided into two categories: Physical tag: These tags are used to provide a visual appearance to the text Logical tag: These tags are used to add some logical or semantic value to the text.
Here are the Tags examples Header - <h?> </h?> There are 6 levels of headings available, from h1 for the largest and most important heading, down to h6 for the smallest heading.
Bold - <b> </b> The text in between the tags will be bold, and stand out against text around it, the same as in a word processor.
Italic - <i> </i> Also working the same way as a word processor, italics displays the text at a slight angle.
Underline - <u> </u> Again, the same as underline in a word processor. Note that html links are already underlined and don't need the extra tag.
Strike-out - <strike> </strike> Puts a line right through the centre of the text, crossing it out. Often used to show that text is old and no longer relevant. Also works by using <s> </s> instead.
Preformatted Text - <pre> </pre> Any text between the pre tags, including spaces, carriage returns, and punctuation, will appear in the browser as it would in a text editor (normally browsers ignore multiple spaces)
Source Code - <code> </code> Text is displayed in a fixed-width font, commonly used when showing source code. I have used it on this site, along with stylesheets, to show all tags.
Typewriter Text - <tt> </tt> The text appears to have been typed by a typewriter, in a fixed-width font.
Block Quote - <blockquote> </blockquote> Defines a long quotation, and the quote is displayed with an extra-wide margin on the left-hand side of the blockquote.
Small - <small> </small> Instead of having to set font size, you can use the small tag to render text slightly smaller than the text around it. Useful for displaying the 'fine-print'.
Font Colour - <font color="#??????"> </font> Change the color of a few words or a section of text. The 6 question marks represent the hex color code, see this list of colors and codes for some samples.
Font Size - <font size="?"> </font> Replace the? with a number from 1 to 7 to change the size of the font. One being the smallest and seven the largest.
Font Size Change - <font size="+/-?"> </font> For an immediate change of font size with respect to the font size preceding it, this tag increase or decreases the size of the font by the number you specify. Eg: <font size="-1">Some Text</font>
Change Font Face - <font face="?"> </font> To show text in a particular font, use the font name such as "Helvetica" or "Arial" or "Courier". Be aware that using some fancy font from your computer means that the person viewing that page must also have that font installed on their computer too, otherwise it will look totally different to them.
Centre - <center> </center> A useful tag, as it says, it makes everything in between the tags centered (in the middle of the page).
Emphasis - <em> </em> Used to emphasize text, which usually appears in italics, but can vary according to your browser.
Strong Emphasis - <strong> </strong> Used to emphasize text more, which usually appears in bold, but can vary according to your browser.
0 notes
Video
youtube
HTML and CSS for beginners 7 - Inline Element in HTML
In this episode I'm going to explain about HTML Inline elements
About inline elements
1. HTML inline-level elements can appear in the body of an HTML page.
2. It can contain data and other inline elements.
3. By default, inline elements do not begin on new lines.
4. inline elements create shorter structures (than block-level elements).
List of inline elements
b, big, I, small, tt, textarea, abbr, object, q, cite, code, dfn, em, kbd, br, map, strong, samp, vara, bdo, object, q, script, span, sub, sup, button, input, label, acronym, select.
0 notes
Video
youtube
HTML and CSS for beginners 6 - Block Level Element in HTML
This tutorial, I explain about HTML Block Level Element
Few lines about a block-level element
• Block-level elements always start on a new line
• The block-level element can have customized margin and padding
• The block-level element can contain other block-level element or Inline-level element
• If the width is not manually set, A block-level element always takes up the full width of its container • If the height isn’t manually set, the Block level element’s height is adjusted automatically to fit all the content and other elements within itself.
Example
Most of the elements of HTML are Block-level elements. Including h1 through h6, p, div, form, header, footer, ul, ol, li and so on. A full list of the block-level elements can be found here.
0 notes
Video
youtube
HTML and CSS for beginners | Tamil - Part 5 - Html Attributes
0 notes
Video
youtube
HTML and CSS for beginners | Tamil - Part 4 - Check Output and Basic Tags...
0 notes
Link
0 notes
Link
0 notes
Link
0 notes
Link
I this video I will explain to you what are all the different types of tags in HTML HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content. Most tags must have two parts, an opening, and a closing part. For example, Opening tag and closing tag. Note that the closing tag has the same text as the opening tag, but has an additional forward-slash / character. I tend to interpret this as the "end" or "close" character. There are some tags that are an exception to this rule, and where a closing tag is not required. Each HTML file must have the essential tags for it to be valid so that web browsers can understand it and display it correctly. The rest of the HTML file can contain as little or as many tags as you want to display your content.
0 notes
Link
Learn HTML & CSS in Tamil language, I try to teach you in step by step for beginner in an easy way, in this video I will talk about how you can start designing website or web page using a popular web language HTML and CSS, If you are a computer science student and you are trying to learn Web Designing awesome here I will help you to start creating your own website using HTML and CSS. And here I'm going to cover the following topics :
1. Introduction to HTML and CSS.
2. Different Types of Tags.
3. Folder structure and file saving.
4. how to check the output?
5. Basic Tags in HTML.
6. Html Attributes.
7. Inline Elements and Block Level Elements.
8. Html Formatting and Comments.
9. Lists, Links, and Image
10. HTML Tabels.
11. File Paths.
12. Forms.
13. Video and Audio.
14. Introduction to CSS.
15. Inline, Internal, and External CSS.
16. CSS TIps.
17. CSS Colors.
18. Box Model in CSS
19. Background Image
20. Div and Span
21. Class and ID
22. Child Selector
23. CSS Selector
24. Text, Font, Icon, Links in CSS
25. Display Property in CSS
26. Max width
27. Positions
28. Overflow
29. Align
30. Combinator
31. Pseudo Classes
32. Pseudo Elements
33. Float Clear
34. Styling List
35. Rounded Corner
36. Gradient
37. Sematic tags for layout
38. Styling Table
39. Styling From Element
40. Border Images, Shadows, text effect, web font, 2d, 3d transition,
41. CSS Transition
42. CSS Animation,
43. Object Fit
44. Navigation Bar
45. Dropdown Navigation
46. Grid Model
47. FlexBox
48. Counter
49. CSS Unit
50. and Website Layout
0 notes
Link
0 notes
Link
0 notes
Link










http://chaibrothers.com/
ABOUT CHAI BROTHERS
Our Proprietor, S.Ansar Basha, an engineering graduate is a man who has a revolutionized the tea industry and handful of experience in corporate industry. He has dedicated his life to innovating new flavors and new experiences in the tea world. And when he decided to set up his dream tea business, Chai Brothers was born.
0 notes