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

PPTX
CSC103 Web Technologies: HTML, CSS, JS
PDF
Intro to Javascript and jQuery
PDF
Intro to jQuery
PDF
Html / CSS Presentation
PPTX
HTML, CSS And JAVASCRIPT!
ODP
Introduction of Html/css/js
PPTX
Web Development Basics: HOW TO in HTML
PDF
Introduction to html & css
CSC103 Web Technologies: HTML, CSS, JS
Intro to Javascript and jQuery
Intro to jQuery
Html / CSS Presentation
HTML, CSS And JAVASCRIPT!
Introduction of Html/css/js
Web Development Basics: HOW TO in HTML
Introduction to html & css

What's hot (20)

PDF
Html,javascript & css
PDF
Intro to HTML, CSS & JS - Internship Presentation Week-3
PPTX
PDF
Frontend Crash Course: HTML and CSS
PDF
Intro to HTML and CSS basics
PPT
KMUTNB - Internet Programming 4/7
PPT
Span and Div tags in HTML
PPT
A quick guide to Css and java script
PPTX
HTML CSS | Computer Science
PPTX
Html and css
PDF
Web Layout
PPTX
HTML/CSS/java Script/Jquery
PPT
Html JavaScript and CSS
PPTX
Html and css presentation
PPTX
Introduction to HTML and CSS
PPT
Introduction to HTML
ODP
Cascading Style Sheets - Part 02
PPT
JavaScript: Ajax & DOM Manipulation
PPT
How Cascading Style Sheets (CSS) Works
PDF
Html,javascript & css
Intro to HTML, CSS & JS - Internship Presentation Week-3
Frontend Crash Course: HTML and CSS
Intro to HTML and CSS basics
KMUTNB - Internet Programming 4/7
Span and Div tags in HTML
A quick guide to Css and java script
HTML CSS | Computer Science
Html and css
Web Layout
HTML/CSS/java Script/Jquery
Html JavaScript and CSS
Html and css presentation
Introduction to HTML and CSS
Introduction to HTML
Cascading Style Sheets - Part 02
JavaScript: Ajax & DOM Manipulation
How Cascading Style Sheets (CSS) Works
Ad

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

PPTX
Presentation
KEY
前端概述
KEY
Html5 For Jjugccc2009fall
PPTX
Java Script
PPTX
Introduction to Java Script
PPT
Client-Side Web Development - An Overview
PDF
WT UNIT 2 presentation :client side technologies JavaScript And Dom
PPTX
Bootcamp - Web Development Session 2
PPTX
BEAAUTIFUL presentation of java
PPTX
Basics of Ext JS
PDF
Devoxx 2014-webComponents
PPT
JavaScript - Part-1
PPT
Java script
PPTX
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
PPTX
Tech Winter Break GDG Oncampus Sri Vasavi Engineering College
PPTX
Unit5_Web_Updvvgxsvjbffcvvgbjifszated.pptx
PPTX
Java script writing javascript
PPTX
unit4 wp.pptxjvlbpuvghuigv8ytg2ugvugvuygv
PPTX
Introduction to java script, how to include java in HTML
PPTX
lec 14-15 Jquery_All About J-query_.pptx
Presentation
前端概述
Html5 For Jjugccc2009fall
Java Script
Introduction to Java Script
Client-Side Web Development - An Overview
WT UNIT 2 presentation :client side technologies JavaScript And Dom
Bootcamp - Web Development Session 2
BEAAUTIFUL presentation of java
Basics of Ext JS
Devoxx 2014-webComponents
JavaScript - Part-1
Java script
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
Tech Winter Break GDG Oncampus Sri Vasavi Engineering College
Unit5_Web_Updvvgxsvjbffcvvgbjifszated.pptx
Java script writing javascript
unit4 wp.pptxjvlbpuvghuigv8ytg2ugvugvuygv
Introduction to java script, how to include java in HTML
lec 14-15 Jquery_All About J-query_.pptx
Ad

More from Agustinus Theodorus (7)

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

Recently uploaded (20)

PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Machine learning based COVID-19 study performance prediction
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Cloud computing and distributed systems.
PPT
Teaching material agriculture food technology
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Approach and Philosophy of On baking technology
PDF
Encapsulation theory and applications.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Machine learning based COVID-19 study performance prediction
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Understanding_Digital_Forensics_Presentation.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Programs and apps: productivity, graphics, security and other tools
The Rise and Fall of 3GPP – Time for a Sabbatical?
Chapter 3 Spatial Domain Image Processing.pdf
sap open course for s4hana steps from ECC to s4
Unlocking AI with Model Context Protocol (MCP)
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Cloud computing and distributed systems.
Teaching material agriculture food technology
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Approach and Philosophy of On baking technology
Encapsulation theory and applications.pdf
Review of recent advances in non-invasive hemoglobin estimation
Dropbox Q2 2025 Financial Results & Investor Presentation

Introduction to HTML, CSS, and Javascript