WORKSHOP A Basics in HTML/CSS.

Slides:



Advertisements
Similar presentations
ASP.NET Intro An introduction to the languages and communication of an ASP.NET system.
Advertisements

CSCI 3100 Tutorial 6 Web Development Tools 1 Cuiyun GAO 1.
SM5312 week 11: CSS Menus & Navigation Bars1 An Introduction to Cascading Style Sheets CSS Menus and Navigation Bars Nick Foxall.
Web Page Introduction. What is a web page? A hypertext that contains clickable links. A web page is a text file containing Hyper Text MarkUp Language.
Web Page Introduction. What is a web page? A web page is a text file containing markup language tags. –A markup language combines text and extra information.
What is Web Design The term “web design” has come to encompass a number of disciplines, including: Visual (graphic) design User interface and experience.
Chapter 14 Introduction to HTML
INTRO TO MAKING A WEBSITE Mark Zhang.  HTML  CSS  Javascript  PHP  MySQL  …That’s a lot of stuff!
CHAPTER 8: Enhancing a Website Session 1. Objectives Embed a YouTube video in your website Insert a slideshow in your website Use Google fonts in your.
Web Page Introduction. What is a web page? A web page is a text file containing markup language tags. –A markup language combines text and extra information.
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
LOGO Website code presentation Software Group Project :: First project Prepared By Abdullah Mustafa Abu Nada Hussian Abd-Jaleel Shaalan
DIY Web Development Hand Code Your Own Page (For Free!) by Bryan Brown, Indiana University Bloomington SLIS.
Web Page Introduction. What is a web page? A web page is a text file containing markup language tags. –A markup language combines text and extra information.
CSE3310: Web training A JumpStart for Project.
How to create a website with HTML and PHP The very basics By Alexander Niehoff.
With your friendly Web Developer, Chris.. Terminology  HTML - > Hypertext Markup Language  CSS -> Cascading Style Sheet  open tag  close tag  HTTP->Hypertext.
Webpage design for researchers Dr Jim Briggs 1.
INTRODUCTION TO FRONTPAGE. TOPICS TO BE DISCUSSED……….  Introduction Introduction  Features Features  Starting Front Page Starting Front Page  Components.
The Internet and the World Wide Web. The Internet A Network is a collection of computers and devices that are connected together. The Internet is a worldwide.
INTERMEDIATE WEB DESIGN INTRODUCTORY CSS, JAVASCRIPT AND PHP.
Web Page Introduction. What is a web page? A web page is a text file containing markup language tags. –A markup language combines text and extra information.
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.
How the Web Works Digital Histories Workshop Adam Crymble.
Session I Chapter 1 - Introduction to Web Development
IT Introduction to Website Development Welcome!
By Bearzx Dive Into Web Introduction To WEB
Quick Questions 1. What does HTML stand for? 2. What are the three main languages of the Web? 3. What is the purpose of the tags? 4. Why do we indent different.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
Spiderman ©Marvel Comics Creating Web Pages (part 1)
Web Page Introduction. What is a web page? A hypertext that contains clickable links. A web page is a text file containing Hyper Text MarkUp Language.
Engineering Projects In Community Service Matt Mooney Community Based Research University of Notre Dame.
CSE3310: Web training A JumpStart for Project. Outline Introduction to Website development Web Development Languages How to build simple Pages in PHP.
Before We Begin Please download the files from as we will be using them in our walkthroughs.
CSCI 3100 Tutorial 2 Web Development Tools 1 HTML 5 & CSS 3 1.
Introduction to HTML Hypertext Mark-up Language. HTML HTML = Hypertext Mark-up Language Is just plain simple text marked up by “tags” You can create a.
Web Page Design The Basics. The Web Page A document (file) created using the HTML scripting language. A document (file) created using the HTML scripting.
Web Development. Agenda Web History Network Architecture Types of Server The languages of the web Protocols API 2.
Alabama Educational Technology Conference
Web Page Introduction.
Web Basics: HTML/CSS/JavaScript What are they?
Project 1 Introduction to HTML.
Objective % Select and utilize tools to design and develop websites.
Web Page Introduction.
Lesson 14: Web Scraping Topic: Web Scraping.
Objectives Overview Discuss tools for creating a website, such as text editors, code editors, and content management systems, and when to use each Explain.
Developing Web-Based Applications
Unit 2, Lesson 5 Website Development Tools
Objective % Select and utilize tools to design and develop websites.
Introduction to web design discussing which languages is used for website designing
Unit 2, Lesson 5 Website Development Tools
APTECH JANAKPURI INSTITUTE PROVIDING WEB DESIGNING COURSES Address:- J-1,2nd Floor, Opp Metro Pillar No – 559, Janakpuri East, Delhi /42.
Essentials of Web Pages
5.2.3 Be able to use HTML and CSS to construct web pages
HTML5 Level I Session I Chapter 1 - Introduction to Web Development
Lesson Objectives Aims You should know about: – Web Technologies
Secure Web Programming
Web Page Design CIS 300.
Input CS 422: UI Design and Programming
BUILDING A WEBSITE 7.4.2: Basics of HTML and CSS.
Basic Web Page Creation
Computer communications
Web Development 101 Workshop
HTML & CSS 7 Languages in 7 Days.
Johan Ng and Muhammad Hazzry
Client-Server Model: Requesting a Web Page
Information Technologies Anselm Spoerri PhD (MIT)
4.00 Apply procedures to add content by using Dreamweaver. (22%)
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

WORKSHOP A Basics in HTML/CSS

CONTENT What is web development? HTML CSS Design help Bootstrap Help tools Lunch 12:30

NEW AREA

I talk – you listen and stop me!

CODING If you don’t have a code/text editor, Go to sublimetext.com and download it ASAP! 

WHAT IS WEB DEVELOPMENT?

Code Low-fidelity prototype High-fidelity prototype Sketch Paper & pen High-fidelity prototype The interaction, size, font, color Online tool

All the webpages in the world Static webpages (basic) Dynamic webpages (more advanced) Looks the same for everybody The content changes depending on client, interactive websites HTML – The content CSS – Design of the content HTML CSS javaScript Database Framework etc.

SERVER Request Response CLIENT

FRONT-END DEVELOPER SERVER Request Response CLIENT HTML, CSS & JavaScript CLIENT

Front-end + Back-end = Full-Stack Developer SERVER Request BACK-END DEVELOPER PHP, Python, Java, Ruby, MySQL & … FRONT-END DEVELOPER Response HTML, CSS & JavaScript CLIENT Front-end + Back-end = Full-Stack Developer

HyperText Markup Language HTML HyperText Markup Language

HTML the content of the webpage Text Images Links/buttons to other webpages Menu

<tagname> content </tagname>

HTML the content of the webpage Text Images Links/buttons to other webpages Menu <p> <h1> <h2> <h3> … <img> <a> <button> <nav> <div> <ul> <li> <a>

Copy the code and paste in your fav. text editor emmelifall.com Copy the code and paste in your fav. text editor

Get started: Copy the code from emmelifall.com and paste in your fav. text editor and save the file as index.html in a new folder.

why save as index.html?

structure of html-file

text, images and links

wait, what about the menu?

Cascading Style Sheets CSS Cascading Style Sheets

CSS design of the content Size of text and images Color of text and background The font of the text font-size, width, height color, background-color font-family

create a new file and save as style.css

design the text and images

colorpicker

:hover

this webpage looks like the 90s Design help this webpage looks like the 90s

Have a walk around the office to know what air feels like. We start at 13:40 Have a walk around the office to know what air feels like.

more professional pictures royalty free pictures, pexels.com

Google Fonts

matching colors together coolors.co tinyurl.com/pinkcombo

<link rel="icon" type="image/png" href="praline.png"> bookmark <link rel="icon" type="image/png" href="praline.png">

a responsive design library/framework Bootstrap a responsive design library/framework

https://getbootstrap.com/docs/3.3/components/ Bootstrap components https://getbootstrap.com/docs/3.3/components/

a menu

make it clickable

Help tools

W3schools

stackoverflow

Youtube.com

webbstudio.helloworld.se

use chrome and the console !!!!!

design the menu

Please give me feedback at: Sooo that’s it!  Please give me feedback at: tinyurl.com/pinkcomment

tinyurl.com/pinkworkshop All the material: tinyurl.com/pinkworkshop My email: emmelisg@msn.com

Things to learn more about: Column system in Boostrap Class and ID in CSS Boxmodel in CSS