SlideShare una empresa de Scribd logo
1 de 118
Descargar para leer sin conexión
@neelotpal.dey
Introduction to HTML
 HTML (Hyper Text Markup Language) is the standard markup
language for creating web pages.
 It defines the structure and content of a web page using tags.
 HTML is the foundation of the World Wide Web.
 It allows for embedding multimedia, links, and other interactive
elements.
Programming with HTML5
@neelotpal.dey
HTML5 Syntax
 Elements are the building blocks of HTML, represented by tags.
 Tags are enclosed in angle brackets, e.g., <tag>.
 Attributes provide additional information about an element.
 Comments are used to add explanatory notes and are ignored by the
browser.
@neelotpal.dey
HTML5 Document Structure
 <!DOCTYPE html> declares the document type as HTML5.
 <html> is the root element that contains the entire web page.
 <head> contains metadata and other information not visible on the
page.
 <body> contains the visible content of the web page.
Attributes of Tags
@neelotpal.dey
 id - Unique identifier for an element
 class - Used for grouping and styling elements
 style - Inline CSS styles for the element
 title - Tooltip text displayed when hovering over the element
 href - Specifies the URL or location for links and other elements
 src - Specifies the source URL for images, scripts, and other media
 alt - Alternative text for images and other multimedia
@neelotpal.dey
 type - Specifies the type of media or content
 value - Defines the initial value for input fields
 name - Identifies an element for scripting or form submission
 target - Specifies where to open a linked document
 rel - Defines the relationship between the current document and a linked document
 disabled - Disables an input field or form control
 checked - Specifies that an input field should be pre-selected
 multiple - Allows multiple values to be selected in a drop-down or input field
Types of HTML5 Tags
@neelotpal.dey
 Opening Tags: <tag>
 Marks the beginning of an element.
 Usage: <div>, <p>, <h1>, etc.
 Closing Tags: </tag>
 Marks the end of an element.
 Usage: </div>, </p>, </h1>, etc.
 Self-Closing Tags: <tag />
 Represents elements that don't have any content and are closed immediately.
 Usage: <br />, <img />, <input />
@neelotpal.dey
 Empty Tags: <tag>
 Similar to self-closing tags but don't have a closing slash.
 Usage: <br>, <hr>, <link>
 Container Tags: <tag>...</tag>
 Used to wrap content within an element.
 Usage: <p>...</p>, <div>...</div>, <ul>...</ul>
HTML5 Tags
@neelotpal.dey
<a>
 Defines a hyperlink.
 Syntax: <a href="...">...</a>
@neelotpal.dey
<abbr>
 Represents an abbreviation or acronym.
 Syntax: <abbr>...</abbr>
@neelotpal.dey
<address>
 Defines contact information for the author/owner of the document.
 Syntax: <address>...</address>
@neelotpal.dey
<area>
 Defines a clickable area within an image map.
 Syntax: <area shape="..." coords="..." href="...">
@neelotpal.dey
<article>
 Represents a self-contained composition in a document.
 Syntax: <article>...</article>
@neelotpal.dey
<aside>
 Represents content aside from the main content.
 Syntax: <aside>...</aside>
@neelotpal.dey
<audio>
 Embeds sound content in a document.
 Syntax: <audio src="...">...</audio>
@neelotpal.dey
<b>
 Defines bold text.
 Syntax: <b>...</b>
@neelotpal.dey
<base>
 Specifies the base URL for all relative URLs in the document.
 Syntax: <base href="..." target="...">
@neelotpal.dey
<bdi>
 Isolates a part of text that might be formatted in a different direction.
 Syntax: <bdi>...</bdi>
@neelotpal.dey
<bdo>
 Overrides the current text direction.
 Syntax: <bdo dir="...">...</bdo>
@neelotpal.dey
<blockquote>
 Defines a section that is quoted from another source.
 Syntax: <blockquote cite="...">...</blockquote>
@neelotpal.dey
<body>
 Defines the document's body.
 Syntax: <body>...</body>
@neelotpal.dey
<br>
 Inserts a single line break.
 Syntax: <br>
@neelotpal.dey
<button>
 Defines a clickable button.
 Syntax: <button type="...">...</button>
@neelotpal.dey
<canvas>
 Used to draw graphics via scripting.
 Syntax: <canvas>...</canvas>
@neelotpal.dey
<caption>
 Defines a table caption
 Syntax: <caption>...</caption>
@neelotpal.dey
<cite>
 Defines the title of a work
 Syntax: <cite>...</cite>
@neelotpal.dey
<code>
 Defines a piece of computer code
 Syntax: <code>...</code>
@neelotpal.dey
<col>
 Specifies column properties for each column within a <colgroup>
element
 Syntax: <col span="...">
@neelotpal.dey
<colgroup>
 Defines a group of one or more columns in a table
 Syntax: <colgroup span="...">...</colgroup>
@neelotpal.dey
<data>
 Links a given piece of content with a machinereadable translation
 Syntax: <data value="...">...</data>
@neelotpal.dey
<datalist>
 Specifies a list of predefined options for an <input> element
 Syntax: <datalist>...</datalist>
@neelotpal.dey
<dd>
 Defines a description/value of a term in a description list
 Syntax: <dd>...</dd>
@neelotpal.dey
<del>
 Defines text that has been deleted from a document
 Syntax: <del>...</del>
@neelotpal.dey
<details>
 Defines additional details that the user can view or hide
 Syntax: <details>...</details>
@neelotpal.dey
<dfn>
 Represents the defining instance of a term
 Syntax: <dfn>...</dfn>
@neelotpal.dey
<dialog>
 Defines a dialog box or window
 Syntax: <dialog>...</dialog>
@neelotpal.dey
<div>
 Defines a division or section in an HTML document
 Syntax: <div>...</div>
@neelotpal.dey
<dl>
 Defines a description list
 Syntax: <dl>...</dl>
@neelotpal.dey
<dt>
 Defines a term/name in a description list
 Syntax: <dt>...</dt>
@neelotpal.dey
<em>
 Defines emphasized text
 Syntax: <em>...</em>
@neelotpal.dey
<embed>
 Defines a container for an external application or interactive content
 Syntax: <embed src="..." type="...">
@neelotpal.dey
<fieldset>
 Groups related elements in a form
 Syntax: <fieldset>...</fieldset>
@neelotpal.dey
<figcaption>
 Defines a caption for a <figure> element
 Syntax: <figcaption>...</figcaption>
@neelotpal.dey
<figure>
 Represents selfcontained content
 Syntax: <figure>...</figure>
@neelotpal.dey
<footer>
 Defines a footer for a document or section
 Syntax: <footer>...</footer>
@neelotpal.dey
<form>
 Defines an HTML form for user input
 Syntax: <form action="..." method="...">...</form>
@neelotpal.dey
<h1> to <h6>
 Defines HTML headings
 Syntax: <h1>...</h1> to <h6>...</h6>
@neelotpal.dey
<head>
 Defines information about the document
 Syntax: <head>...</head>
@neelotpal.dey
<header>
 Defines a header for a document or section
 Syntax: <header>...</header>
@neelotpal.dey
<hr>
 Defines a thematic break or horizontal rule
 Syntax: <hr>
@neelotpal.dey
<html>
 Defines the root of an HTML document
 Syntax: <html>...</html>
@neelotpal.dey
<i>
 Defines a part of text in an alternative voice or mood
 Syntax: <i>...</i>
@neelotpal.dey
<iframe>
 Defines an inline frame
 Syntax: <iframe src="..." title="...">...</iframe>
@neelotpal.dey
<img>
 Defines an image
 Syntax: <img src="..." alt="...">
@neelotpal.dey
<input>
 Defines an input control
 Syntax: <input type="..." name="..." value="...">
@neelotpal.dey
<ins>
 Defines a text that has been inserted into a document
 Syntax: <ins>...</ins>
@neelotpal.dey
<kbd>
 Defines keyboard input
 Syntax: <kbd>...</kbd>
@neelotpal.dey
<label>
 Defines a label for an <input> element
 Syntax: <label for="...">...</label>
@neelotpal.dey
<legend>
 Defines a caption for a <fieldset> element
 Syntax: <legend>...</legend>
@neelotpal.dey
<li>
 Defines a list item
 Syntax: <li>...</li>
@neelotpal.dey
<link>
 Defines the relationship between the current document and an
external resource
 Syntax: <link rel="..." href="..." type="...">
@neelotpal.dey
<main>
 Specifies the main content of a document
 Syntax: <main>...</main>
@neelotpal.dey
<map>
 Defines an image map
 Syntax: <map name="...">...</map>
@neelotpal.dey
<mark>
 Defines marked/highlighted text
 Syntax: <mark>...</mark>
@neelotpal.dey
<meta>
 Defines metadata about an HTML document
 Syntax: <meta name="..." content="...">
@neelotpal.dey
<meter>
 Defines a scalar measurement within a known range
 Syntax: <meter value="..." min="..." max="...">...</meter>
@neelotpal.dey
<nav>
 Defines navigation links
 Syntax: <nav>...</nav>
@neelotpal.dey
<noscript>
 Defines an alternate content for users that don't support scripting
 Syntax: <noscript>...</noscript>
@neelotpal.dey
<object>
 Defines an embedded object
 Syntax: <object data="..." type="...">...</object>
@neelotpal.dey
<ol>
 Defines an ordered list
 Syntax: <ol>...</ol>
@neelotpal.dey
<optgroup>
 Defines a group of related options in a dropdown list
 Syntax: <optgroup label="...">...</optgroup>
@neelotpal.dey
<option>
 Defines an option in a dropdown list
 Syntax: <option value="...">...</option>
@neelotpal.dey
<output>
 Defines the result of a calculation
 Syntax: <output for="...">...</output>
@neelotpal.dey
<p>
 Defines a paragraph
 Syntax: <p>...</p>
@neelotpal.dey
<param>
 Defines a parameter for an object
 Syntax: <param name="..." value="...">
@neelotpal.dey
<picture>
 Defines a container for multiple image resources
 Syntax: <picture>...</picture>
@neelotpal.dey
<pre>
 Defines preformatted text
 Syntax: <pre>...</pre>
@neelotpal.dey
<progress>
 Represents the progress of a task
 Syntax: <progress value="..." max="...">...</progress>
@neelotpal.dey
<q>
 Defines a short quotation
 Syntax: <q cite="...">...</q>
@neelotpal.dey
<rp>
 Defines what to show in browsers that do not support ruby
annotations
 Syntax: <rp>...</rp>
@neelotpal.dey
<rt>
 Defines an explanation/pronunciation of characters
 Syntax: <rt>...</rt>
@neelotpal.dey
<ruby>
 Defines a ruby annotation (for East Asian typography)
 Syntax: <ruby>...</ruby>
@neelotpal.dey
<s>
 Defines text that is no longer correct or relevant
 Syntax: <s>...</s>
@neelotpal.dey
<samp>
 Defines sample output from a computer program
 Syntax: <samp>...</samp>
@neelotpal.dey
<script>
 Defines a clientside script
 Syntax: <script src="...">...</script>
@neelotpal.dey
<section>
 Defines a section in a document.
 Syntax: <section>...</section>
@neelotpal.dey
<select>
 Defines a drop -down list.
 Syntax: <select name="..." multiple="...">...</select>
@neelotpal.dey
<small>
 Defines smaller text.
 Syntax: <small>...</small>
@neelotpal.dey
<source>
@neelotpal.dey
 Defines multiple media resources for media elements.
 Syntax: <source src="..." type="...">
@neelotpal.dey
<span>
@neelotpal.dey
 Defines a section in a document.
 Syntax: <span>...</span>
@neelotpal.dey
<strong>
 Defines important text.
 Syntax: <strong>...</strong>
@neelotpal.dey
<style>
 Defines style information for a document.
 Syntax: <style>...</style>
@neelotpal.dey
<sub>
 Defines subscripted text.
 Syntax: <sub>...</sub>
@neelotpal.dey
<summary>
 Defines a visible heading for a <details> element.
 Syntax: <summary>...</summary>
@neelotpal.dey
<sup>
 Defines superscripted text.
 Syntax: <sup>...</sup>
@neelotpal.dey
<svg>
 Defines a container for SVG graphics.
 Syntax: <svg>...</svg>
@neelotpal.dey
<table>
 Defines a table.
 Syntax: <table>...</table>
@neelotpal.dey
<tbody>
 Groups the body content in a table.
 Syntax: <tbody>...</tbody>
@neelotpal.dey
<td>
 Defines a cell in a table.
 Syntax: <td>...</td>
@neelotpal.dey
<template>
 Defines a reusable template.
 Syntax: <template>...</template>
@neelotpal.dey
<textarea>
 Defines a multi-line text input control.
 Syntax: <textarea name="..." rows="..." cols="...">...</textarea>
@neelotpal.dey
<tfoot>
 Groups the footer content in a table.
 Syntax: <tfoot>...</tfoot>
@neelotpal.dey
<th>
 Defines a header cell in a table.
 Syntax: <th scope="..." colspan="..." rowspan="...">...</th>
@neelotpal.dey
<thead>
 Groups the header content in a table.
 Syntax: <thead>...</thead>
@neelotpal.dey
<time>
 Defines a date/time.
 Syntax: <time datetime="...">...</time>
@neelotpal.dey
<title>
 Defines the title of the document.
 Syntax: <title>...</title>
@neelotpal.dey
<tr>
 Defines a row in a table.
 Syntax: <tr>...</tr>
@neelotpal.dey
<track>
 Defines text tracks for media elements.
 Syntax: <track src="..." kind="..." srclang="..." label="...">
@neelotpal.dey
<u>
 Defines underlined text.
 Syntax: <u>...</u>
@neelotpal.dey
<ul>
 Defines an unordered list.
 Syntax: <ul>...</ul>
@neelotpal.dey
<var>
 Defines a variable.
 Syntax: <var>...</var>
@neelotpal.dey
<video>
 Defines a video or movie.
 Syntax: <video src="..." controls>...</video>
@neelotpal.dey
<wbr>
 Defines a possible linebreak.
 Syntax: <wbr>

Más contenido relacionado

Similar a Introduction to HTML with syntax and tags.pptx

Similar a Introduction to HTML with syntax and tags.pptx (20)

Web technology
Web technologyWeb technology
Web technology
 
Html template
Html templateHtml template
Html template
 
HTML Basics 1 workshop
HTML Basics 1 workshopHTML Basics 1 workshop
HTML Basics 1 workshop
 
Learn html elements and structure cheatsheet codecademy
Learn html  elements and structure cheatsheet   codecademyLearn html  elements and structure cheatsheet   codecademy
Learn html elements and structure cheatsheet codecademy
 
41915024 html-5
41915024 html-541915024 html-5
41915024 html-5
 
Html
HtmlHtml
Html
 
Elements
ElementsElements
Elements
 
HTML5 Basics
HTML5 BasicsHTML5 Basics
HTML5 Basics
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html2
Html2Html2
Html2
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
 
Week 2-intro-html
Week 2-intro-htmlWeek 2-intro-html
Week 2-intro-html
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Introduction to Html5, css, Javascript and Jquery
Introduction to Html5, css, Javascript and JqueryIntroduction to Html5, css, Javascript and Jquery
Introduction to Html5, css, Javascript and Jquery
 
Html and html5 cheat sheets
Html and html5 cheat sheetsHtml and html5 cheat sheets
Html and html5 cheat sheets
 
HTML and CSS Basics
HTML and CSS BasicsHTML and CSS Basics
HTML and CSS Basics
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
About html
About htmlAbout html
About html
 

Último

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 

Último (20)

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 

Introduction to HTML with syntax and tags.pptx