Key concepts of Computing

Slides:



Advertisements
Similar presentations
Farhan Nisar University of Peshawar
Advertisements

HTML Basics Customizing your site using the basics of HTML.
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
Today CSS HTML A project.
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
HTML – A Brief introduction Title of page This is my first homepage. This text is bold  The first tag in your HTML document is. This tag tells your browser.
End User Computing An Introduction to CSS Sujana Jyothi Research Lab1, Callan Building, Department of Computer Science
Chapter 8 Creating Style Sheets.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
JavaScript is a client-side scripting language. Programs run in the web browser on the client's computer. (PHP, in contrast, is a server-side scripting.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
1 Essential HTML coding By Fadi Safieddine (Week 2)
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
HTML CSS JAVASCRIPT. HTML - Stands for Hyper Text Markup Language HTML is a ‘language’ that describes web pages. This language is a collection of codes.
HTML: Hyptertext Markup Language Doman’s Sections.
Colors & Fonts Building a Website Lesson 7. Font Font The tag specifies the font face, font size, and color of text. The tag can have any or all of these.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
INTRODUCTION JavaScript can make websites more interactive, interesting, and user-friendly.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
External Style Sheets Exploring Computer Science – Lesson 3-6.
Cascading Style Sheets (CSS) EXPLORING COMPUTER SCIENCE – LESSON 3-5.
Creating a Web Page Presented by: Bernadette G. Bautista Manuel I. Santos MNHS April 29, 2011.
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
Learning Aim C.  Creating web pages involves many considerations.  In this section we will look at the different software tools you can use and how.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
LT: I can use CSS to decorate a web page. Do Now: Get your storyboard, and log in to winhome. Write our a list of colors you want in your website. (Minimum.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
WEB DESIGN Presentated By Amit Kapri Contact No
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
1 Cascading Style Sheet (CSS). 2 Cascading Style Sheets (CSS)  a style defines the appearance of a document element. o E.g., font size, font color etc…
CSS Introductions. Objectives To take control of the appearance of a Web site by creating style sheets. To use a style sheet to give all the pages of.
Week 1: Introduction to HTML and Web Design
Cascading Style Sheets (CSS)
Alabama Educational Technology Conference
CSS Nick Sims.
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
Web Development & Design Foundations with HTML5 8th Edition
>> Introduction to CSS
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
Unit 2 Style sheets- CSS.
HTML and Website Development
Web Development & Design Foundations with HTML5
Introduction to web design discussing which languages is used for website designing
APTECH JANAKPURI INSTITUTE PROVIDING WEB DESIGNING COURSES Address:- J-1,2nd Floor, Opp Metro Pillar No – 559, Janakpuri East, Delhi /42.
Of HTML, CSS and JavaScript
INTRODUCTION TO HTML AND CSS
Web pages Lesson 3.
What is HTML?.
Introduction to HTML5.
Training & Development
Web Design and Development
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Computer communications
HTML – The COMPUTING UNLOCKED GUIDE
CASCADING STYLE SHEET.
Web Development 101 Workshop
Johan Ng and Muhammad Hazzry
Web Programming and Design
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

Key concepts of Computing HTML, CSS and Javascript My sources of information were my computer science book, W3Schools, my peers and my prior knowledge of HTML and CSS.

What is HTML? HTML stands for hyper-text markup language, and is used to code most standard web-pages. It defines where hyperlinks lead on webpages as well as the general layout of the page. Several tags are used to define elements on a webpage, such as <h1></h1> Tags MUST be closed to make the browser realise where one section ends.

Examples of HTML <h1></h1> creates a heading that looks like THIS. Headings can go down to <h6></h6>. <form> tags allow you to create a form with text fields and radio buttons. <p></p> allows you to define paragraphs on your website, to separate text into a neat and easy to read format. The <title> and <body> tags define what part of the website should be on the tab header, and which part is the website itself.

What is CSS? CSS is a language that describes the style of a HTML page. While HTML defines placement of elements on the page, CSS defines what everything looks like and how it should work in depth. It works on giving properties to elements. You could give all H1 elements on a page a different font compared to all your H2 or H3 elements. CSS can be embedded into HTML, or work from an external stylesheet.

Examples of CSS Background-color: Defines the colour of the background for body elements. Accepts hex codes or named colours like light-blue as arguments. Color: Defines the actual colour of an element, such as the text colour. It accepts the same inputs a Margin-left, margin-right etc.: Defines how far away from the margin an element is. Accepts any amount of pixels. Font-size, font-family: This defines the size of text, as well as the font it will use.

What is Javascript? Javascript is a programming language that works alongside HTML. It controls how a website should behave. It allows you to create more complex elements for a page, such as date and time counters, visitor books or modify HTML attributes on the fly. Javascript can be embedded into HTML with the <script> tag.

Example of Javascript <button type="button" onclick="document.getElementById('demo').innerHTML = Date()"> Click me to display Date and Time.</button> This is an example of Javascript from W3Schools.com. When the button is clicked, the current date and time is fetched through Javascript.