Posts

Showing posts with the label HTML

Tables in HTML & Forms in HTML - Fill in the blanks. - Interactive Worksheet

Interactive Worksheet Interactive Worksheet Chapter 8: Tables in HTML 1. The <table> tag is used to create _______. Select an answer tables lists images 2. The <tr> tag defines a _______ in a table. Select an answer row column cell 3. Table data is represented using the _______ tag. Select an answer <td> <th> <tr> 4. Table headers are created using the _______ tag. Select an answer <th> <td> <tr> 5. The colspan attribute merges _______ horizontally. Select an answer cells ...

Complete the Missing HTML & CSS Tags

HTML & CSS Missing Tags Activity Complete the Missing HTML & CSS Tags Example 1: Fill in the missing HTML and CSS tags below. <!DOCTYPE html> <html> <head> <title>My School</____> <style> body { background-color: ________; font-family: ________; } h1 { color: ________; text-align: ________; font-size: ________; } p { font-size: ________; color: ________; } </____> </head> <body> <h1>My School Name: _______ </___> <p>Write here about our school: <____> ____________________________________ ____________________________________ </____> <h2>Student Attendance Record</h2> <table> <...

12. Creating Our First Website

Chapter 12: Creating Our First Website - Quiz Chapter 12: Creating Our First Website - Quiz Fill in the Blanks 1. The <body> tag contains the __________ of the webpage. Answer: content 2. The <head> section includes elements like __________ and __________. Answer: meta tags and stylesheets 3. Every HTML document starts with the __________ declaration. Answer: <!DOCTYPE html> 4. The <title> tag helps display the __________ of the webpage in the browser tab. Answer: title of the webpage 5. The basic structure of an HTML document is defined using __________ tags. Answer: HTML tags Match the Following Question Answer <h1> tag ...

Chapter 10: CSS in HTML

Chapter 10: CSS in HTML Chapter 10: CSS in HTML Fill in the Blanks CSS stands for _______. Answer: Cascading Style Sheets Inline CSS is applied directly within an HTML element using the _______ attribute. Answer: style External stylesheets are linked using the _______ tag. Answer: <link> The color property is used to set the _______ of text. Answer: color The font-size property controls the _______ of text. Answer: size True or False CSS is used to define the structure of a webpage. Answer: False External stylesheets are linked using the <link> tag. Answer: True Inline CSS cannot be overridden by external stylesheets. Answer: False The color property is used to change the background color. Answer: Fa...

Chapter 7: Lists, Images, and Links - HTML

Chapter 7: Lists, Images, and Links Chapter 7: Lists, Images, and Links Fill in the Blanks The <ul> tag is used to create an _______ list. Answer: unordered The <ol> tag creates an _______ list. Answer: ordered The <li> tag is used to define _______ in a list. Answer: list items The <img> tag uses the _______ attribute to specify the image source. Answer: src Hyperlinks are created using the _______ tag. Answer: <a> True or False The <ol> tag is used to create unordered lists. Answer: False The <a> tag is used to add images to a webpage. Answer: False The src attribute is mandatory for the <img> tag. Answer: True Ordered lists use numbers or letters by default...

Chapter 13: Introduction to Website Building with the Power of AI - HTML

Chapter 13: Introduction to Website Building with the Power of AI Chapter 13: Introduction to Website Building with the Power of AI Fill in the Blanks AI tools like __________ can help design websites quickly and efficiently. Answer: Wix ADI Machine learning enhances __________ recommendations on websites. Answer: personalized AI-based tools allow for __________-and-drop functionality in web design. Answer: drag A key feature of AI tools is __________-friendly designs. Answer: mobile AI tools can __________ content based on user preferences. Answer: personalize True or False AI tools can assist in generating content for websites. Answer: True Machine learning is unrelated to web development. Answer: False AI-based to...

2: Basic HTML Structure- HTML

Basic HTML Structure Basic HTML Structure Fill in the Blanks The __________ tag defines the title of a webpage. Answer: <title> The __________ section of an HTML document includes meta tags and links to stylesheets. Answer: <head> The __________ tag contains the main content of the webpage. Answer: <body> The first line of an HTML document is __________. Answer: <!DOCTYPE html> The __________ tag is used to define a heading in HTML. Answer: <h1> True or False The <body> tag is optional in HTML. Answer: False A basic HTML webpage must include the <!DOCTYPE html> declaration. Answer: True The <head> section can contain the title of the webpage. Answer: True ...

Chapter 11: The Amazing
Tag
- HTML

Chapter 11: The Amazing <div> Tag Chapter 11: The Amazing <div> Tag Fill in the Blanks The <div> tag is used to create a __________ or container for other elements in HTML. Answer: division <div> tags can be styled using __________. Answer: CSS A <div> tag helps to __________ content on a webpage into sections. Answer: organize <div> tags are often used to create __________ layouts in web design. Answer: flexible The __________ tag is commonly used to group elements for styling or layout purposes. Answer: <div> True or False The <div> tag cannot contain other HTML elements. Answer: False You can use CSS to style a <div> tag. Answer: True <div> tags are necessary for a...

Tables in HTML & Forms in HTML - True or False - Interactive Worksheet

Interactive Worksheet - HTML Interactive Worksheet - HTML True or False Quiz Chapter 8: Tables in HTML - True or False 1. The <th> tag is used to define table data. Select an answer True False 2. Rows in a table are defined by the <tr> tag. Select an answer True False 3. The rowspan attribute merges cells vertically. Select an answer True False 4. The <td> tag is used for table headers. Select an answer True False 5. The <table> tag cannot have attributes like border. Select an answer True False ...

Chapter 9: Forms in HTML

Chapter 9: Forms in HTML Chapter 9: Forms in HTML Fill in the Blanks The <form> tag is used to create _______. Answer: forms Text input fields are created using the <input> tag with _______ attribute. Answer: type="text" A submit button is created using <input> with _______ attribute. Answer: type="submit" The action attribute defines the _______ where form data is sent. Answer: URL The <textarea> tag is used for _______ text input. Answer: multi-line True or False The <input> tag can create both text fields and buttons. Answer: True The action attribute is optional in forms. Answer: True Forms cannot contain dropdown menus. Answer: False The <textarea> tag is used ...

Chapter 8: Tables in HTML

Chapter 8: Tables in HTML Chapter 8: Tables in HTML Fill in the Blanks The <table> tag is used to create _______. Answer: tables The <tr> tag defines a _______ in a table. Answer: row Table data is represented using the _______ tag. Answer: <td> Table headers are created using the _______ tag. Answer: <th> The colspan attribute merges _______ horizontally. Answer: cells True or False The <th> tag is used to define table data. Answer: False Rows in a table are defined by the <tr> tag. Answer: True The rowspan attribute merges cells vertically. Answer: True The <td> tag is used for table headers. Answer: False The <table> ...

HTML Table Tag with Cell Colors

Image
HTML Table Tag Explanation with Animation HTML Table Tag with Cell Colors Explanation of the Table Structure The <table> tag in HTML is used to display data in a tabular format. It organizes information into rows and columns, making it easier to read and understand. The basic structure of a table includes the following tags: <table> : Defines the start of the table. <tr> : Defines a row in the table. <th> : Defines a table header cell, typically used for column titles. <td> : Defines a standard table cell, used for regular data. cellpadding : Defines the space between the cell content and the cell border. cellspacing : Defines the space between the individual cells. border : Defines the thickness of the table border. style : Used for additional styling (like color, border, etc.)...

Advanced HTML Tag Previewer

Interactive HTML Previewer Interactive HTML Previewer

Interactive Worksheet - Excel-V True or False- Quiz

Excel Quiz - True or False Excel Quiz - True or False Answer each question by selecting True or False from the dropdown. Click submit to check your answers and see your marks. 1. Excel is a spreadsheet application developed by Microsoft. Select an answer True False 2. Excel files use the .docx extension. Select an answer True False 3. The main component of Excel is the worksheet. Select an answer True False 4. Each cell in Excel can contain only text data. ...

Interactive Worksheet - Excel-V Fill-in-the-Blanks Quiz

Excel Quiz - Fill in the Blanks Excel Quiz - Fill in the Blanks Fill in the blanks by selecting the correct option from the dropdown. Click submit to check your answers. 1. Excel is used primarily for __________ management and data analysis. Select an answer spreadsheet document presentation 2. The intersection of a row and column in Excel is called a __________. Select an answer cell box sheet 3. Each Excel workbook can contain multiple __________. Select an answer sheets cells columns ...