Sending the data to destination location in the URL format: ============================================================ file:///G:/UI_4PM_Practice/Forms/test.html?Firstname=abc&Middlename=pqr&Lastname=xyz method attribute: ================ get | post get ==> can able to send the data in URL format post ==> cannot able to send the data in URL format. Form Submission






============================================ Advanced CSS Selectors: ======================== 1) class-class compound selector ================================= ex:

context

context

Syntax: .class1.class2{ property : value; } Class Class Compound Selector

UI Development

HTML

CSS

JavaScript

Bootstrap

====================================================== class-class child selector =========================== Syntax: .class1 .class2{ property : value; } Class Class Compound Selector
HTML
CSS
JavaScript
Bootstrap
========================================= Id-Class Child Selector ======================= Syntax: #id_value .class_value{ property : value; } =========================================== Tag-Class Compound Selector: ============================ Syntax: tag.class-name{ property : value; } Class Class Compound Selector

Ashok IT

UI Development

=============================================== tag-id compound selector: ======================== Syntax: tag-name#id-name{ property : value; } ============================================ tag-class child selector: ========================= Syntax: tag-name .class-name{ property : value; } =========================================== tag-tag child selector: ======================

div h2{ property : value; } Syntax: tag1 tag2{ property : value; } ========================================

==> direct child

==> indirect child
tag-tag direct child: ===================== Syntax: parent-tag > child-tag{ property : value; }

general sibling selector: ========================= Syntax: parent-tag ~ child-tag{ property : value; }

# DIRECT

# INDIRECT

# DIRECT