SlideShare a Scribd company logo
INTRODUCTION TO
HTML, CSS, JS
Agustinus Theodorus
HELLO!
Agustinus Theodorus
IT Architect and Web Services Staff at Bina Nusantara
IT Division
HOW DOES CLIENT SIDE & SERVER SIDE WORK?
Web
Server
Web BrowserInternet
HTTP Request
HTTP Response
INTRODUCTION TO
HTML
Agustinus Theodorus
WHAT IS HTML?
Hypertext Markup Language
is the standard markup language for documents designed to be displayed in a web browser.
COMMONLY USED HTML TAGS
<p>…</p>
<br />
<h1>…</h1>
<!--…-->
<ol>…</ol>
<ul>…</ul>
<img />
<a>…</a>
<table>…</table>
INTRODUCTION TO
CSS
Agustinus Theodorus
WHAT IS CSS?
Cascading Style Sheets
is a style sheet language used for describing the presentation of a document written in a markup language like
HTML.
LET’S CODE
CSS!
INTRODUCTION TO
JAVASCRIPT
Agustinus Theodorus
WHAT IS JAVASCRIPT?
Ja-va-Script
ˈjävəskript,ˈjavə-/
noun
an object-oriented computer programming language commonly used to create interactive effects within web
browsers.
HOW DOES JAVASCRIPT WORK?
A brief explanation of Client Side and Server Side.
▪ Client Side 🡪 script is run on client’s browser, and doesn’t need web server to run.
▪ Server Side 🡪 script is processed on a web server, and is served back at the user to generate a dynamic html
page for the client.
HOW DOES JAVASCRIPT WORK?
Web
Server
Web Browser
(Client Side JS is
processed here)
HOW DO WE APPLY JAVASCRIPT?
▪ There are 3 ways to apply Javascript in your web app:
▪ Internal JavaScript
Written in the .html file within the script tag
<script>
function sayHiConsoleLog()
{
var button = document.getElementById(‘helloBtn’);
button.onclick = function () {
console.log(‘Hello World’);
}
}
</script>
▪ External JavaScript
Written in a external .js file
<script src="script.js"></script>
▪ Inline JavaScript handlers
Written inline in html tags (script here usually calls functions)
<button onclick=“sayHiConsoleLog()">Click me!</button>
LET’S LEARN
SYNTAX!
BUT BEFORE
THAT..
var , let , & const;
The variables used in javascript are dynamic.
Variables in Javascript
function(){
console.log(‘I am a function’);
}
Javascript Functions
alert(object)
To show an alert containing the value of the object.
alert
console.log(object)
To log the value of the object in the console.
console.log
object.getElementById(‘name of element’)
Used to get a HTML element by their Id as an object
.getElementById
object.onclick
Used to add a trigger event on a object.
.onclick
object.value
Used to get the value of input tags (<input>).
.value
object.length
Used to get the length of a object.
.length
object.checked
Used to get the Boolean in a <input type=“radio”> or <input type=“checkbox”>.
.checked
object.innerHTML
Used to get or modify the value of HTML tags, i.e: (<div>, < p>, <span>, etc..)
.innerHTML
object.substring(start index, end index)
Used to get the part of string in object value.
.substring
testString.test(string)
Used to check if the string contains testString.
.test
EXERCISES
▪ File : form registrasi.html

More Related Content

PDF
Html / CSS Presentation
Shawn Calvert
 
ODP
Introduction of Html/css/js
Knoldus Inc.
 
PPTX
CSC103 Web Technologies: HTML, CSS, JS
Richard Homa
 
PDF
Intro to Javascript and jQuery
Shawn Calvert
 
PDF
Intro to jQuery
Shawn Calvert
 
PPTX
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
PPTX
Web Development Basics: HOW TO in HTML
Der Lo
 
PDF
Introduction to html & css
sesharao puvvada
 
Html / CSS Presentation
Shawn Calvert
 
Introduction of Html/css/js
Knoldus Inc.
 
CSC103 Web Technologies: HTML, CSS, JS
Richard Homa
 
Intro to Javascript and jQuery
Shawn Calvert
 
Intro to jQuery
Shawn Calvert
 
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
Web Development Basics: HOW TO in HTML
Der Lo
 
Introduction to html & css
sesharao puvvada
 

What's hot (20)

PDF
Html,javascript & css
Predhin Sapru
 
PDF
Intro to HTML, CSS & JS - Internship Presentation Week-3
Devang Garach
 
PPTX
html-css
Dhirendra Chauhan
 
PDF
Frontend Crash Course: HTML and CSS
Thinkful
 
PDF
Intro to HTML and CSS basics
Eliran Eliassy
 
PPT
KMUTNB - Internet Programming 4/7
phuphax
 
PPT
Span and Div tags in HTML
Biswadip Goswami
 
PPT
A quick guide to Css and java script
AVINASH KUMAR
 
PPTX
HTML CSS | Computer Science
Transweb Global Inc
 
PPTX
Html and css
Sukrit Gupta
 
PDF
Web Layout
Shawn Calvert
 
PPTX
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
PPT
Html JavaScript and CSS
Radhe Krishna Rajan
 
PPTX
Html and css presentation
umesh patil
 
PPTX
Introduction to HTML and CSS
Ferdous Mahmud Shaon
 
PPT
Introduction to HTML
Amit Tyagi
 
ODP
Cascading Style Sheets - Part 02
Hatem Mahmoud
 
PPT
JavaScript: Ajax & DOM Manipulation
borkweb
 
PPT
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
PDF
Web 101
OneDesignCompany
 
Html,javascript & css
Predhin Sapru
 
Intro to HTML, CSS & JS - Internship Presentation Week-3
Devang Garach
 
Frontend Crash Course: HTML and CSS
Thinkful
 
Intro to HTML and CSS basics
Eliran Eliassy
 
KMUTNB - Internet Programming 4/7
phuphax
 
Span and Div tags in HTML
Biswadip Goswami
 
A quick guide to Css and java script
AVINASH KUMAR
 
HTML CSS | Computer Science
Transweb Global Inc
 
Html and css
Sukrit Gupta
 
Web Layout
Shawn Calvert
 
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
Html JavaScript and CSS
Radhe Krishna Rajan
 
Html and css presentation
umesh patil
 
Introduction to HTML and CSS
Ferdous Mahmud Shaon
 
Introduction to HTML
Amit Tyagi
 
Cascading Style Sheets - Part 02
Hatem Mahmoud
 
JavaScript: Ajax & DOM Manipulation
borkweb
 
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
Ad

Similar to Introduction to HTML, CSS, and Javascript (20)

PDF
WT UNIT 2 presentation :client side technologies JavaScript And Dom
SrushtiGhise
 
PDF
JS BASICS JAVA SCRIPT SCRIPTING
Arulkumar
 
PDF
javascriptPresentation.pdf
wildcat9335
 
PPTX
Lecture 5 javascript
Mujtaba Haider
 
PPTX
Lecture-15.pptx
vishal choudhary
 
PPTX
Introduction to Java script for web .pptx
FahimMousa
 
PDF
Unit 4(it workshop)
Dr.Lokesh Gagnani
 
PPT
JAVA SCRIPT
Go4Guru
 
PPTX
Java script Basic
Jaya Kumari
 
PPT
Java script
sanjay joshi
 
PPT
Java script
umesh patil
 
PPT
javascript.ppt
MrsSChitradeviCommer
 
PDF
Java script how to
julian vega
 
PPTX
Java script tutorial
Son Nguyen
 
PPTX
Chapter 3 INTRODUCTION TO JAVASCRIPT S.pptx
KelemAlebachew
 
PPTX
Javascript session 1
Muhammad Ehtisham Siddiqui
 
PPT
L08IntroToJavaScript.ppt
ictlab3
 
PPTX
Tech Winter Break GDG Oncampus Sri Vasavi Engineering College
umar630934
 
PPT
JavaScript (1).pptdffdfvdfvfvfvfefwefedfe
sgg86953
 
PPTX
JavaScript_III.pptx
rashmiisrani1
 
WT UNIT 2 presentation :client side technologies JavaScript And Dom
SrushtiGhise
 
JS BASICS JAVA SCRIPT SCRIPTING
Arulkumar
 
javascriptPresentation.pdf
wildcat9335
 
Lecture 5 javascript
Mujtaba Haider
 
Lecture-15.pptx
vishal choudhary
 
Introduction to Java script for web .pptx
FahimMousa
 
Unit 4(it workshop)
Dr.Lokesh Gagnani
 
JAVA SCRIPT
Go4Guru
 
Java script Basic
Jaya Kumari
 
Java script
sanjay joshi
 
Java script
umesh patil
 
javascript.ppt
MrsSChitradeviCommer
 
Java script how to
julian vega
 
Java script tutorial
Son Nguyen
 
Chapter 3 INTRODUCTION TO JAVASCRIPT S.pptx
KelemAlebachew
 
Javascript session 1
Muhammad Ehtisham Siddiqui
 
L08IntroToJavaScript.ppt
ictlab3
 
Tech Winter Break GDG Oncampus Sri Vasavi Engineering College
umar630934
 
JavaScript (1).pptdffdfvdfvfvfvfefwefedfe
sgg86953
 
JavaScript_III.pptx
rashmiisrani1
 
Ad

More from Agustinus Theodorus (7)

PDF
DSC - Shared Preferences and Room
Agustinus Theodorus
 
PDF
DSC - Recycle View, DiffUtil and many other things
Agustinus Theodorus
 
PDF
DSC - Recycle View, DiffUtil and many other things (Slides)
Agustinus Theodorus
 
PDF
Flutter Dev 2019
Agustinus Theodorus
 
PDF
Introduction to Android (With a UI/UX Case Study)
Agustinus Theodorus
 
PDF
Introduction to Java (and object-oriented programming)
Agustinus Theodorus
 
PDF
Git Workshop
Agustinus Theodorus
 
DSC - Shared Preferences and Room
Agustinus Theodorus
 
DSC - Recycle View, DiffUtil and many other things
Agustinus Theodorus
 
DSC - Recycle View, DiffUtil and many other things (Slides)
Agustinus Theodorus
 
Flutter Dev 2019
Agustinus Theodorus
 
Introduction to Android (With a UI/UX Case Study)
Agustinus Theodorus
 
Introduction to Java (and object-oriented programming)
Agustinus Theodorus
 
Git Workshop
Agustinus Theodorus
 

Recently uploaded (20)

PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PPT
L2 Rules of Netiquette in Empowerment technology
Archibal2
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PPT
Coupa-Kickoff-Meeting-Template presentai
annapureddyn
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PPTX
Stamford - Community User Group Leaders_ Agentblazer Status, AI Sustainabilit...
Amol Dixit
 
PDF
Software Development Company | KodekX
KodekX
 
PDF
The Evolution of KM Roles (Presented at Knowledge Summit Dublin 2025)
Enterprise Knowledge
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
L2 Rules of Netiquette in Empowerment technology
Archibal2
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Coupa-Kickoff-Meeting-Template presentai
annapureddyn
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
Stamford - Community User Group Leaders_ Agentblazer Status, AI Sustainabilit...
Amol Dixit
 
Software Development Company | KodekX
KodekX
 
The Evolution of KM Roles (Presented at Knowledge Summit Dublin 2025)
Enterprise Knowledge
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 

Introduction to HTML, CSS, and Javascript