SlideShare a Scribd company logo
Introduction to web development
INTRODUCTION
TO
WEB
DEVELOPMENT
Alberto Romeu - @alrocar
Jorge Sanz - @xurxosanz
AGENDA
1. HTML (15')
2. CSS (15')
3. JavaScript (60')
4. Lab (30')
WEB
DEVELOPMENT
TOOLS
A text editor
A browser
A web server
INTRO TO HTML
Hyper Text Markup Language
Standard for writing web pages
HTML Tags - 1991
HTML 2.0 - 1995
HTML 4.0 - 1997
HTML 5.0 - ¿2014?
WHAT IS HTML?
WEB PAGES that run in a web browser (client side)
<html>
<head>
<meta charset="utf-8" />
<title>A tiny document</title>
</head>
<body>
<p>My dog ate all the guacamole.</p>
</body>
</html>
THE DOCUMENT
TREE
TAGS
<tag>content</tag>
<span style="font-family: monospace;"><!--paragrapah--></span>
<span style="font-family: monospace;"><p>This is text within a paragraph.</p></span
<br>
<!--nested tags-->
<p>I <strong>really</strong> mean that</p><br>
<br>
<!-- single elements -->
<img src="smileyface.jpg" /><br>
ATTRIBUTES
<tag attributeName="attributeValue">content</tag>
<p id="myinput">
<br>
<p class="foo"><br>
<br>
<img src="picture.gif" width="40" height="20" alt="I am a picture" />
HEAD
<head>
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="description" content="Intro to web dev">
<meta name="author" content="Alberto Romeu">
<meta http-equiv="refresh" content="30">
<title>Title of the document</title>
<br>
</head>
BODY
<body>
Write here the content of your web page
</body>
HEADING
<h1>I'm a very big heading</h1>
<br>
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
<span style="font-family: monospace; font-size: 19.662282943725586px; font-style: n
PARAGRAPH
<p>
Here’s a paragraph.
</p>
<p>
And here’s a different one.
It’s as simple as that.
</p>
LINE BREAK
I’d like to write some text<br>and then have the next bit on the line below.
span
<p>Here’s a paragraph of text. What I want to happen is to make <span style="font-w
link
<a href="http://www.prodevelop.es" target="blank">This is a link</a>
IMAGE
<img src="picture.jpg" width="104" height="142" />
<br>
<a href="http://www.prodevelop.es" target="blank">
<span style="font-family: monospace;"> <img src="picture.jpg" width="104" height="
</a>
DIV
Here’s some content…
<div>This is a div.</div>
<div>And this is another one. Works pretty much like a new paragraph for now.</div>
Here’s some more content…
TABLE
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
list
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
<br>
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol><br>
html layouts
<!DOCTYPE html>
<html>
<body>
<div id="container" style="width:500px">
<div id="header" style="background-color:#FFA500;">
<h1 style="margin-bottom:0;">Main Title of Web Page</h1></div>
<div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;
<b>Menu</b><br>
HTML<br>
CSS<br>
JavaScript</div>
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:le
Content goes here</div>
<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">
I'm the footer</div>
</div>
</body>
</html>
FORM AND INPUT
<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>
<br>
<form name="input" action="html_form_action.php" method="get">
Username: <input type="text" name="user">
<input type="submit" value="Submit">
</form><br>
IFRAME
<iframe src="demo_iframe.htm" width="200" height="200"></iframe>
LEARNING
RESOURCES
Mozilla Intro to web development
Intro to HTML
W3Schools intro to HTML
INTRO TO CSS
Cascading Style Sheets
Standard for styling HTML elements
CSS 1 1996
CSS 2 1998
CSS3 2012
Browser support!! http://caniuse.com/
INTERNAL
STYLESHEET
<head>
<title><title>
<br>
<style type=”text/css”>
CSS Content Goes Here
</style>
<br>
</head>
<body>
EXTERNAL
STYLESHEET
<head>
<title><title>
<br>
<link rel=”stylesheet” type=”text/css” href=”style.css” />
<br>
</head>
<body>
INLINE STYLES
<p style=”color: #ff0000;”>Some red text</p>
CSS SYNTAX
selector { property: value }
body {
background: #eeeeee;
font-family: “Trebuchet MS”, Verdana, Arial, serif;
}
INHERITANCE
body {font-family: Verdana, serif;}
h1 {font-family: Georgia, sans-serif;}
p {font-family: Tahoma, serif;}
TAG SELECTOR
<p>this is a paragraph</p>
<span style="font-family: monospace;"> </span><span style="font-family: monospace;"
CLASS SELECTOR
<span> <span class="greentext">I'm green</span></span>
.greentext {
font-size: small;
color: #008080;
}
id selector
<div id="container">
This is a div
</div>
#container {
width: 80%;
margin: auto;
padding: 20px;
background: #ffffff;
border: 1px solid #666;
}
NESTED
SELECTORS
30 css selectors you must memorize
PROPERTIES
CSS 2.1 properties
Comprehensive list of properties
LEARNING
RESOURCES
Intro to CSS
CSS syntax
CSS basics
CSS selectors
CSS specs
Twitter bootstrap
INTRO TO
JAVASCRIPT
Scripting programming language
Client side (also server side)
Interpreted (runtime evaluation)
JavaScript 1.0 - 1996
Javascript 1.8.5 - 2010
JAVASCRIPT IN
HTML
<script type="text/javascript">
</script>
//JavaScript goes here
<script src="whatever.js" type="text/javascript"></script>
JAVASCRIPT LAB
JSON
JavaScript Object Notation
Plain Text
Human readable
JSON.parse(), JSON.stringify()
Faster, shorter, easier... than XML
THE DOCUMENT
TREE
DOM
Document oBJECT MODEL
Access with JavaScript
Better with jQuery
DOM
var element = document.getElementById("theID");
document.getElementByClass('a');
<br>
element.innerHTML = "Write the HTML";
<br>
element.style.color = "blue";
WEB
PROGRAMMING
LAB
Complete the HTML
Set the title of the web page
Add the link tag to import the profile.css file
Add the script tag to import the profile.js file
Add a VERY BIG header in the div 'container' with the id
'myname'
COMPLETE THE
CSS
Change the body color to #444
Set the container width to 800px
Create a style for h2 tags
Change the weight, size and color of the font
COMPLETE THE
JAVASCRIPT
Open the profile.js
Write the code necessary after the comments
libraries
vs
micro-frameworks
VS
TOOLKITS
JAVASCRIPT
LIBRARIES
A collection of functionality you can call.
Integrated.
Tested
BIG
JAVASCRIPT MICRO-FRAMEWORKS
Solves a single problem
Modular
Not always integrated
Small
http://microjs.com/
javascript toolkits
Several libraries together
Set of components you can use (or not)
Integrated
BIGGER
widgetS
jQuery UI
ExtJS
MochaUI
Dijit
Graphical
D3
Raphael
Kinetic
Three
MAPPING
OpenLayers
LeafletJS (MF)
ModestMaps (MF)
PolyMapS
MAPPING GUI
MapQuery (jQuery)
GeoExt (ExtJS)
LEARNING
RESOURCES
W3Schools JavaScript intro
Mozilla Intro to JS
JavaScript tutorial
List of JavaScript libraries
Mapping libraries comparison
Pros and cons of Micro-frameworks
Introduction to web development

More Related Content

PDF
Bootstrap 5 basic
Jubair Ahmed Junjun
 
PPSX
Html introduction
Dalia Elbadry
 
PPTX
Bootstrap 3
Lanh Le
 
PPTX
Html5 and-css3-overview
Jacob Nelson
 
PPTX
Bootstrap 5 whats new
Sandun Perera
 
PPT
Introduction to BOOTSTRAP
Jeanie Arnoco
 
PPTX
Bootstrap Framework
Yaowaluck Promdee
 
PPTX
Bootstrap - Basics
FirosK2
 
Bootstrap 5 basic
Jubair Ahmed Junjun
 
Html introduction
Dalia Elbadry
 
Bootstrap 3
Lanh Le
 
Html5 and-css3-overview
Jacob Nelson
 
Bootstrap 5 whats new
Sandun Perera
 
Introduction to BOOTSTRAP
Jeanie Arnoco
 
Bootstrap Framework
Yaowaluck Promdee
 
Bootstrap - Basics
FirosK2
 

What's hot (20)

PDF
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
Bootstrap Creative
 
PPTX
An introduction to bootstrap
Mind IT Systems
 
PDF
CSS Dasar #9 : Inheritance
Sandhika Galih
 
PPTX
Presentation about html5 css3
Gopi A
 
PPTX
JSON in Solr: from top to bottom
Alexandre Rafalovitch
 
PPTX
MICROSOFT AZURE INTEGRATION SERVICES.pptx
Flexsin
 
ODP
HTML5
Hatem Mahmoud
 
PPTX
Bootstrap PPT by Mukesh
Mukesh Kumar
 
PPTX
Presentation of bootstrap
1amitgupta
 
PDF
2.28.17 Introducing DSpace 7 Webinar Slides
DuraSpace
 
PDF
DSpace 7 - The Angular UI from a user’s perspective
Atmire
 
PPTX
Bootstrap 4 ppt
EPAM Systems
 
PPTX
CSS3 Media Queries And Creating Adaptive Layouts
Svitlana Ivanytska
 
PPTX
Bootstrap ppt
Nidhi mishra
 
PPSX
Microservices Architecture, Monolith Migration Patterns
Araf Karsh Hamid
 
PDF
CSS Dasar #10 : Specificity
Sandhika Galih
 
PPTX
Front-end development introduction (HTML, CSS). Part 1
Oleksii Prohonnyi
 
PPTX
Bootstrap 3
McSoftsis
 
PDF
Bootstrap
Sarvesh Kushwaha
 
PPTX
What Is Express JS?
Simplilearn
 
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
Bootstrap Creative
 
An introduction to bootstrap
Mind IT Systems
 
CSS Dasar #9 : Inheritance
Sandhika Galih
 
Presentation about html5 css3
Gopi A
 
JSON in Solr: from top to bottom
Alexandre Rafalovitch
 
MICROSOFT AZURE INTEGRATION SERVICES.pptx
Flexsin
 
Bootstrap PPT by Mukesh
Mukesh Kumar
 
Presentation of bootstrap
1amitgupta
 
2.28.17 Introducing DSpace 7 Webinar Slides
DuraSpace
 
DSpace 7 - The Angular UI from a user’s perspective
Atmire
 
Bootstrap 4 ppt
EPAM Systems
 
CSS3 Media Queries And Creating Adaptive Layouts
Svitlana Ivanytska
 
Bootstrap ppt
Nidhi mishra
 
Microservices Architecture, Monolith Migration Patterns
Araf Karsh Hamid
 
CSS Dasar #10 : Specificity
Sandhika Galih
 
Front-end development introduction (HTML, CSS). Part 1
Oleksii Prohonnyi
 
Bootstrap 3
McSoftsis
 
Bootstrap
Sarvesh Kushwaha
 
What Is Express JS?
Simplilearn
 
Ad

Viewers also liked (17)

PDF
Introduction to web development
Mohammed Safwat
 
PPTX
1-01: Introduction To Web Development
apnwebdev
 
PDF
WEB I - 01 - Introduction to Web Development
Randy Connolly
 
PDF
Web Design
Speedy Little Website
 
PDF
Intro to HTML
Randy Oest II
 
PDF
Front end development best practices
Karolina Coates
 
PPTX
Mobile Web App development multiplatform using phonegap-cordova
Khirulnizam Abd Rahman
 
PPTX
Html css java script basics All about you need
Dipen Parmar
 
PDF
Intro to JavaScript
Dan Phiffer
 
PPTX
Back to the Basics - 1 - Introduction to Web Development
Clint LaForest
 
PPTX
How to Turn Your Holiday Sales into Long-term Customer Retention
Antavo Loyalty Management Platform
 
PPTX
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
PPTX
Transform SharePoint default list forms with HTML, CSS and JavaScript
John Calvert
 
PPTX
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
PDF
Intro to HTML 5 / CSS 3
Tadpole Collective
 
PPT
Introduction to Javascript
Amit Tyagi
 
PPTX
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Introduction to web development
Mohammed Safwat
 
1-01: Introduction To Web Development
apnwebdev
 
WEB I - 01 - Introduction to Web Development
Randy Connolly
 
Intro to HTML
Randy Oest II
 
Front end development best practices
Karolina Coates
 
Mobile Web App development multiplatform using phonegap-cordova
Khirulnizam Abd Rahman
 
Html css java script basics All about you need
Dipen Parmar
 
Intro to JavaScript
Dan Phiffer
 
Back to the Basics - 1 - Introduction to Web Development
Clint LaForest
 
How to Turn Your Holiday Sales into Long-term Customer Retention
Antavo Loyalty Management Platform
 
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
Transform SharePoint default list forms with HTML, CSS and JavaScript
John Calvert
 
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
Intro to HTML 5 / CSS 3
Tadpole Collective
 
Introduction to Javascript
Amit Tyagi
 
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Ad

Similar to Introduction to web development (20)

PPTX
HTML5
Brandon Byars
 
KEY
前端概述
Ethan Zhang
 
PPTX
HTML CSS and Web Development
Rahul Mishra
 
PDF
html5
NebberCracker01
 
PDF
Introduccion a HTML5
Pablo Garaizar
 
PDF
HTML5, the new buzzword
Frédéric Harper
 
PPT
css.ppt
DakshPratapSingh1
 
PPT
css.ppt
Sana903754
 
PPT
HTML Web Devlopment presentation css.ppt
raghavanp4
 
KEY
Html5
Satoshi Kikuchi
 
PDF
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
PPTX
Intermediate Web Design
mlincol2
 
KEY
Html5 intro
Wilfred Nas
 
DOCX
Caracteristicas Basicas De Htlm
Maria S Rivera
 
KEY
Slow kinda sucks
Tim Wright
 
KEY
Html5, a gentle introduction
Diego Scataglini
 
PPTX
Building the basics (WordPress Ottawa 2014)
Christopher Ross
 
PPTX
Diazo: Bridging Designers and Programmers
TsungWei Hu
 
PDF
What you need to know bout html5
Kevin DeRudder
 
PDF
Presentation html5 css3 by thibaut
Thibaut Baillet
 
前端概述
Ethan Zhang
 
HTML CSS and Web Development
Rahul Mishra
 
Introduccion a HTML5
Pablo Garaizar
 
HTML5, the new buzzword
Frédéric Harper
 
css.ppt
Sana903754
 
HTML Web Devlopment presentation css.ppt
raghavanp4
 
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
Intermediate Web Design
mlincol2
 
Html5 intro
Wilfred Nas
 
Caracteristicas Basicas De Htlm
Maria S Rivera
 
Slow kinda sucks
Tim Wright
 
Html5, a gentle introduction
Diego Scataglini
 
Building the basics (WordPress Ottawa 2014)
Christopher Ross
 
Diazo: Bridging Designers and Programmers
TsungWei Hu
 
What you need to know bout html5
Kevin DeRudder
 
Presentation html5 css3 by thibaut
Thibaut Baillet
 

More from Alberto Apellidos (13)

PDF
Working with the Boundless SDK to design and create web mapping applications
Alberto Apellidos
 
PDF
ESA Space App Camp - Solving a $10 Billion problem
Alberto Apellidos
 
PDF
Geospatial web apps development with OpenGeo Suite Client SDK (GXP)
Alberto Apellidos
 
PDF
Geospatial web development with GeoEXT
Alberto Apellidos
 
PDF
JIIDE 2012 - Clientes IDE 3D: SOSTRE y Glob3 Mobile
Alberto Apellidos
 
PDF
OpenGeo Suite @ SIG Libre 2012 Girona
Alberto Apellidos
 
PDF
gvSIG MIni 2 @ SIG Libre 2012 Girona
Alberto Apellidos
 
PDF
Geoinquietos Valencia Open Data
Alberto Apellidos
 
PDF
Implantación de Geoportales con soporte técnico profesionalizado en softwar...
Alberto Apellidos
 
PDF
Novedades gvSIG Mini 2 - 7as Jornadas gvSIG
Alberto Apellidos
 
PDF
gvSIG Mini workshop @ 6th gvSIG Conference
Alberto Apellidos
 
PPT
gvSIG Mini tutorial @ FOSS4G
Alberto Apellidos
 
PPT
SIGATEX Móvil
Alberto Apellidos
 
Working with the Boundless SDK to design and create web mapping applications
Alberto Apellidos
 
ESA Space App Camp - Solving a $10 Billion problem
Alberto Apellidos
 
Geospatial web apps development with OpenGeo Suite Client SDK (GXP)
Alberto Apellidos
 
Geospatial web development with GeoEXT
Alberto Apellidos
 
JIIDE 2012 - Clientes IDE 3D: SOSTRE y Glob3 Mobile
Alberto Apellidos
 
OpenGeo Suite @ SIG Libre 2012 Girona
Alberto Apellidos
 
gvSIG MIni 2 @ SIG Libre 2012 Girona
Alberto Apellidos
 
Geoinquietos Valencia Open Data
Alberto Apellidos
 
Implantación de Geoportales con soporte técnico profesionalizado en softwar...
Alberto Apellidos
 
Novedades gvSIG Mini 2 - 7as Jornadas gvSIG
Alberto Apellidos
 
gvSIG Mini workshop @ 6th gvSIG Conference
Alberto Apellidos
 
gvSIG Mini tutorial @ FOSS4G
Alberto Apellidos
 
SIGATEX Móvil
Alberto Apellidos
 

Recently uploaded (20)

PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
DevOps & Developer Experience Summer BBQ
AUGNYC
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
Best ERP System for Manufacturing in India | Elite Mindz
Elite Mindz
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
DevOps & Developer Experience Summer BBQ
AUGNYC
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
This slide provides an overview Technology
mineshkharadi333
 
Best ERP System for Manufacturing in India | Elite Mindz
Elite Mindz
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 

Introduction to web development