SlideShare a Scribd company logo
MMI-402 Websites Management and Development
Course outline ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Week 1 <title> Html Part I </title>
1- What is HTML?
A- HTML definition ,[object Object],The definition of HTML is  Hyper Text Markup Language. ,[object Object],[object Object],[object Object]
[object Object],B- How does HTML work?
C- What are the <tags> up to? ,[object Object],<b> These words will be bold </b> , and these will not. Listing 1-1:  The sample bold text tag
Figure 1-1:  The sample bold text rendered by Internet Explorer C- What are the <tags> up to?
[object Object],D- Do I have to be online all the time?
[object Object],E- Is there anything HTML can’t do?
2- How to write a <tag>?
A- Tag's structure: ,[object Object],<p> This is a sample paragraph, to demonstrate how to write a tag and give it a proper alignment with tag's attributes </p> Listing 2-1:  The sample paragraph tag
Figure 2-1:  The sample paragraph rendered by Internet Explorer A- Tag's structure:
B- Tag’s attributes ,[object Object],<p align=&quot;right&quot;>This is a sample paragraph, to demonstrate how to write a tag and give it a proper alignment with tag's attributes</p> Listing 2-2:  The sample paragraph tag attributes
Figure 2-2:  The sample paragraph aligned right rendered by Internet Explorer B- Tag’s attributes
3- Structuring HTML documents
A-  Primary container  : ,[object Object],<html> </html> Listing 3-1:  The Primary container of our  HTML  document
B- The head section: ,[object Object],<html> <head> <head> </html> Listing 3-2:  The head section of our  HTML  document <html> <head> </head> </html>
C- Defining the document title: ,[object Object],<html> <head> <title>Lecture 1</title> </head> </html> Listing 3-3:  Defining the document title tags Figure 3-1:  The document title displayed on the title bar of Internet Explorer
D- The last element: ,[object Object],Listing 3-4:  An  HTML  code with  head  and  body  sections defined <html> <head> <title>Lecture 1</title> </head> <body> </body> </html>
E-  Saving : ,[object Object],Figure 3-2:  Save As screen in Notepad
4- Meta Data
A- What is Meta Data? ,[object Object]
Figure 4-1:  Google search page describe <meta> tags Page title with meta keywords Meta Description
B- Defining Meta Tag Keywords: ,[object Object],Listing 4-1:  An  HTML  code with the  <meta>  tag defined name attribute  &quot;keywords&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> </head> <body> </body> </html>
C-  Defining Meta Tag Descriptions : ,[object Object],Listing 4-2:  An HTML code with the <meta> tag defined name attribute &quot;description&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> </head> <body> </body> </html>
D-  Defining the Author of a Document Using Meta Tags : ,[object Object],Listing 4-3:  An HTML code with the <meta> tag defined name attribute &quot;author&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> </head> <body> </body> </html>
E-  Defining Meta Tag Expiration Dates : ,[object Object],Listing 4-4:  An HTML code with the <meta> tag defined name attribute &quot;expires&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta name=&quot;expires&quot; content=&quot;Tue, 20 October 2009 02:00:00 GMT&quot; /> </head> <body>
E-  Defining Meta Tag Expiration Dates : ,[object Object],Listing 4-5:  An HTML code with the <meta> tag defined name attribute &quot;expires&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta name=&quot;expires&quot; content=&quot;Tue, 20 October 2009 13:00:00 GMT&quot; /> <meta name=”pragma” content=”no-cache” /> </head> <body>
F-  Refreshing Page Content Using Meta Tags : ,[object Object],Listing 4-6:  An HTML code with the <meta> tag defined name attribute &quot;http-equiv“ <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.abozeed.info&quot; /> </head> <body>
G- Defining Meta Tag Robot Values: ,[object Object],Listing 4-7:  An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 1 <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.abozeed.info&quot; /> <meta name=&quot;robots&quot; content=&quot;all, follow&quot; /> </head> <body> </body> </html>
G- Defining Meta Tag Robot Values: ,[object Object],Listing 4-8:  An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 2 <meta name=&quot;robots&quot; content=&quot;all, nofollow&quot; /> ,[object Object],Listing 4-9:  An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 3 <meta name=&quot;robots&quot; content=&quot;none&quot; />
5- Controlling the Document Background
A- What is Document Background? ,[object Object]
B- Color Background: ,[object Object],Listing 5-1:  An HTML code with the <body> tag defined name attribute &quot;bgcolor&quot;   <html> <head> <title>Background Color</title> </head> <body bgcolor=&quot;#000000&quot; text=&quot;white&quot;> <h1>Here we have a black background with white text...</h1> </body> </html>
Figure 5-1:  The sample color background rendered by Internet Explorer B- Color Background:
C- Images Background: ,[object Object],Listing 5-2:  An  HTML  code with the  <body>  tag defined name attribute  &quot;background&quot;   <html> <head> <title>Background Images</title> </head> <body background=&quot;images/bg_stone.jpg&quot;> <h1>Isn’t this a nice stone background?</h1> </body> </html>
Figure 5-2:  The sample image background rendered by Internet Explorer C- Images Background:
End of Week 1
Next Week ,[object Object],[object Object],[object Object],[object Object]
For Assignments and Quizzes ,[object Object]
 

More Related Content

What's hot

static dynamic html tags
static dynamic html tagsstatic dynamic html tags
static dynamic html tags
teach4uin
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
Hinopak Motors Limited
 
Html
HtmlHtml
HTML language and all its tags .....
HTML language and all its tags .....HTML language and all its tags .....
HTML language and all its tags .....
Nimrakhan89
 
Html for beginners part I
Html for beginners part IHtml for beginners part I
Html for beginners part I
Unaib Aslam
 
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Htmlsanjay2211
 
Intro Html
Intro HtmlIntro Html
Intro Html
Chidanand Byahatti
 
INTRODUCTION TO HTML
INTRODUCTION TO HTMLINTRODUCTION TO HTML
INTRODUCTION TO HTML
bwire sedrick
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
MayaLisa
 
HTML
HTMLHTML
HTMLARJUN
 
HTML
HTMLHTML
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial
DenMas Hengky
 

What's hot (17)

static dynamic html tags
static dynamic html tagsstatic dynamic html tags
static dynamic html tags
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
 
Html
HtmlHtml
Html
 
HTML language and all its tags .....
HTML language and all its tags .....HTML language and all its tags .....
HTML language and all its tags .....
 
Html for beginners part I
Html for beginners part IHtml for beginners part I
Html for beginners part I
 
html tags
html tagshtml tags
html tags
 
Diva
DivaDiva
Diva
 
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
 
Intro Html
Intro HtmlIntro Html
Intro Html
 
Html intro
Html introHtml intro
Html intro
 
INTRODUCTION TO HTML
INTRODUCTION TO HTMLINTRODUCTION TO HTML
INTRODUCTION TO HTML
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Unit 2.3 Part 1
Unit 2.3 Part 1Unit 2.3 Part 1
Unit 2.3 Part 1
 
HTML
HTMLHTML
HTML
 
HTML
HTMLHTML
HTML
 
Html tag
Html tagHtml tag
Html tag
 
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial
 

Viewers also liked

Social Measurement Success Stories
Social Measurement Success StoriesSocial Measurement Success Stories
Social Measurement Success Stories
Michael Procopio
 
Designing call presentation
Designing call presentationDesigning call presentation
Designing call presentationFitriah Ab
 
Winston Resources Summary 2009 Updated 061109
Winston Resources Summary 2009 Updated 061109Winston Resources Summary 2009 Updated 061109
Winston Resources Summary 2009 Updated 061109bamante
 
Fitriah ab kf 017.10 a.10
Fitriah ab kf 017.10 a.10Fitriah ab kf 017.10 a.10
Fitriah ab kf 017.10 a.10
Fitriah Ab
 
LinkedIn Helps Get a Job
LinkedIn Helps Get a JobLinkedIn Helps Get a Job
LinkedIn Helps Get a Job
Michael Procopio
 
Wood Partners Internal Green Building Presentation
Wood Partners Internal Green Building PresentationWood Partners Internal Green Building Presentation
Wood Partners Internal Green Building PresentationExitten
 
Pre Release Party Slides
Pre Release Party SlidesPre Release Party Slides
Pre Release Party Slidesfahrenj
 
Jamaica no problem
Jamaica   no problemJamaica   no problem
Jamaica no problem
joyamg
 

Viewers also liked (9)

Social Measurement Success Stories
Social Measurement Success StoriesSocial Measurement Success Stories
Social Measurement Success Stories
 
Sea camp 2012
Sea camp 2012Sea camp 2012
Sea camp 2012
 
Designing call presentation
Designing call presentationDesigning call presentation
Designing call presentation
 
Winston Resources Summary 2009 Updated 061109
Winston Resources Summary 2009 Updated 061109Winston Resources Summary 2009 Updated 061109
Winston Resources Summary 2009 Updated 061109
 
Fitriah ab kf 017.10 a.10
Fitriah ab kf 017.10 a.10Fitriah ab kf 017.10 a.10
Fitriah ab kf 017.10 a.10
 
LinkedIn Helps Get a Job
LinkedIn Helps Get a JobLinkedIn Helps Get a Job
LinkedIn Helps Get a Job
 
Wood Partners Internal Green Building Presentation
Wood Partners Internal Green Building PresentationWood Partners Internal Green Building Presentation
Wood Partners Internal Green Building Presentation
 
Pre Release Party Slides
Pre Release Party SlidesPre Release Party Slides
Pre Release Party Slides
 
Jamaica no problem
Jamaica   no problemJamaica   no problem
Jamaica no problem
 

Similar to Lecture1

Module 2 Lesson 1
Module 2 Lesson 1Module 2 Lesson 1
Module 2 Lesson 1claytors
 
HTML
HTMLHTML
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
ldehn
 
Html Intro2
Html Intro2Html Intro2
Html Intro2mlackner
 
Html part2
Html part2Html part2
Html part2suba_sqa
 
Html Presentation Of Web Page Making
Html Presentation Of Web Page MakingHtml Presentation Of Web Page Making
Html Presentation Of Web Page MakingSandeep Supal
 

Similar to Lecture1 (20)

MMI-402 - Lecture 1
MMI-402 - Lecture 1MMI-402 - Lecture 1
MMI-402 - Lecture 1
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Module 2 Lesson 1
Module 2 Lesson 1Module 2 Lesson 1
Module 2 Lesson 1
 
Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
 
Html
HtmlHtml
Html
 
HTML
HTMLHTML
HTML
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 
Html part2
Html part2Html part2
Html part2
 
Html intro
Html introHtml intro
Html intro
 
M02 un04 p01
M02 un04 p01M02 un04 p01
M02 un04 p01
 
Html Presentation Of Web Page Making
Html Presentation Of Web Page MakingHtml Presentation Of Web Page Making
Html Presentation Of Web Page Making
 
Prabu html
Prabu htmlPrabu html
Prabu html
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 

Recently uploaded

UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 

Recently uploaded (20)

UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
 

Lecture1