+ HTML & CSS The “why” and “how-to” on basic coding for business students. By Alexandria Eisenhardt

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
Cascading Style Sheets
CSS CSS Precise Aesthetic Control. Cascading Style Sheets Though they can be put in HTML header, usually a separate page that the HTML links to Contains.
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.
Project 8 Creating Style Sheets.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
Instructional Technology & Design Office or Insert Workshop Name Presented by Your Name Here.
Lecture Cascading Style Sheets (CSS) Internal Style Sheets Classes.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
4.01 Cascading Style Sheets
CSS (Cascading Style Sheets): How the web is styled Create Rules that specify how the content of an HTML Element should appear. CSS controls how your web.
JMD2144 – Lesson 5 Web Design & New Media. ‘Div’ide and conquer One of the most versatile structure tags available is the.. tag Short for ision, it allows.
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
Chapter 11 Cascading Style Sheets: Part I The Web Warrior Guide to Web Design Technologies.
The Characteristics of CSS
HTML & CSS.
CSS – Presentation of Information. Types of Style Sheets External Embedded h1{color:red; font-family: Arial;} Inline Text is here.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
 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.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
IDs versus Classes Naming Your Tags for Maximum Functionality.
1 What is CSS?  CSS stands for Cascading Style Sheets  Styles define how to display HTML elements  Styles are normally stored in Style Sheets  Styles.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Just A Few More Fun Objectives 1 Having Some Fun With Java Script 2 Using Style Sheets.
CSS Basic (cascading style sheets)
Just Enough HTML How to Create Basic HTML Documents.
Introduction to web development and HTML MGMT 230 LAB.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
DIV, Span, CSS.
Course created by Sarah Phillips BBCD Melbourne BAPDCOM Version 1 – April 2013.
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.
Cascading Style Sheets
Introduction to CSS. Why CSS? CSS Provides Efficiency in Design and Updates CSS relatively easy to use Can give you more flexibility and control Faster.
XHTML Formatting font with a style declaration. Formatting Font HTML uses the font tag to change size and family of font But… the font tag is being deprecated.
CSS Fun damentals The Document Hierarchy Element Relationships The Box Model.
Web Design (12) CSS Introduction. Cascading Style Sheets - Defined CSS is the W3C standard for defining the presentation of documents written in HTML.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Microsoft Expression Web 3 – Illustrated Unit D: Structuring and Styling Text.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
Web Technologies Beginning Cascading Style Sheets (CSS) 1Copyright © Texas Education Agency, All rights reserved.
NASRULLAHIBA.  It is time to take your web designing skills to the next level with Cascading Style Sheets (CSS). They are a way to control the look and.
Group 9: Through examples, explain how to build a css navigation bar. Presented by: Daniel Ku, Matt Iannacci & Iphia Henry.
Cascading Style Sheets Using HTML. What are they? A set of style rules that tell the web browser how to present a web page or document. In earlier versions.
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.
Introduction to CSS: Selectors
Cascading Style Sheets (CSS) Internal Style Sheets Classes
Web Basics: HTML/CSS/JavaScript What are they?
4.01 Cascading Style Sheets
>> Introduction to CSS
HTML and Website Development
Cascading Style Sheets (Layout)
Intro to CSS CS 1150 Fall 2016.
HTML Vocabulary.
IS333: MULTI-TIER APPLICATION DEVELOPMENT
Intro to CSS CS 1150 Spring 2017.
Intro to CSS Mr. Singh.
Web Programming– UFCFB Lecture 11
What are Cascading Stylesheets (CSS)?
Training & Development
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
4.01 Cascading Style Sheets
Web Programming and Design
Presentation transcript:

+ HTML & CSS The “why” and “how-to” on basic coding for business students. By Alexandria Eisenhardt

+ About Me Blogger at: Marketing Major Women of Isenberg 2017 Co-Chair

so, what IS coding?! < />

+ Coding is... the use of digital languages or ‘CODE’ to develop apps, websites, and computer software. Basically, coding is the ability to speak several digital languages at once in order to create the things we all use and see everyday! HRESULT hr = MQ_OK; // Return code // Define the maximum number of properties, a property counter, and // an MQQMPROPS structure. const int NUMBEROFPROPERTIES = 1; // Number of computer properties DWORD cPropId=0; // Property counter MQQMPROPS qmprops; QMPROPID aQMPropId[NUMBEROFPROPERTIES]; MQPROPVARIANT aQMPropVar[NUMBEROFPROPERTIES]; HRESULT aQMStatus[NUMBEROFPROPERTIES]; // Specify PROPID_QM_MACHINE_ID. CLSID guidMachineId; // Computer GUID buffer

+ What are the two main languages ? HTML Describes the structure of a webpage CSS (Cascading Style Sheets) CSS describes how HTML elements will be displayed on the screen.body { font-family: sans-serif; color: #55394e; padding: 2px; }.page { Border: 0px; } There are actually more than 500+ coding languages out there!

+ Why should I know this? body {background- color:ffffff;background-repeat:no- repeat;background-position:top left;background-attachment:fixed;} h1{font-family:Cursive;color:000000;} p {font-family:Helvetica;font- size:14px;font-style:normal;font- weight:normal;font-variant:small- caps;color:000000;} why should I learn to code? … well, some of it

+ According to Forbes: Blogging Builds Your Career! “ Today, people not only google companies but also google people who work there. Many a times, googling starts with people’s name before companies. Dorie Clark, in her book Reinventing You, made an evocative case for building personal brands. Personal blogs are a fairly inexpensive gateway – ” herylsnappconner/2016/01/23/ geek-entrepreneur-karthik- rajan-how-blogging-builds- your-career/#53b9ca2ed253

+ Coding & Blogging…? Creating a personal blog as a college student [and more importantly a BUSINESS students] is essentially creating a digital portfolio. If a potential employer were to Google you, and all that came up was a link to your LinkedIn account and your Facebook profile, that doesn’t really tell them a lot about who you really are. A personal blog not only gives you more visual space on Google, but it also allows you to choose what shows up first about you on the internet. Let's Google Me!

+ How much CODING will I really need to learn Personal blogs and websites are almost always (98.99% of the time) hosted on a 3 rd party server. These servers require little to no knowledge of coding to use, BUT having minimal knowledge of code allows you to be more customizable and flexible. It also allows you to know when something is wrong, and how to fix it without having to rely on or pay another 3 rd party. 5 Main Hosting Sites: SquareSpace (mine, and my favorite) Wordpress Blogger Wix Weebly if I want o start a personal website or blog?

let’s learn the basics

HTML

+ HTML Describes the Structure of Pages HTML code is made up of characters that live inside angled brackets <> These brackets are called HTML elements. Elements are made up of 2 tags : and opening tag (<>) and a closing tag( ). A closing tag will always contain a / in it. Ex: this is a paragraph opening paragraph tag closing paragraph tag

+ Main HTML Elements Describes elements shown at the top of the browser, above where you type a URL. is shown within the element. Contains information about the page, rather than information shown within the web browser Everything shown inside the main browser is contained within the body element. This includes the tags Header 1, Header 2, Header 3, Header 4, Header 5, and Header 6, as well as the paragraph tag.

+ How HTML Describes the Structure of Pages This is the Main Heading This is an introduction to the reset of the page. This is a Sub-Heading Subheadings help the reader follow the structure of the page or article they’re reading. Sometimes you may have a sub-sub heading (h3). Another Sub-Heading Here you can see another subheading. This is the Main Heading This is an introduction to the reset of the page. This is a Sub-Heading Subheadings help the reader follow the structure of the page or article they’re reading. Sometimes you may have a sub-sub heading (h3). Another Sub-Heading Here you can see another subheading. what it will look like online what it looks like in HTML code

+ HTML Tips and Tricks Inserting an image is as easy adding an image tag ! To center an item of code all you have to do is wrap it in the tag. Before Image Insert Subheadings help the reader follow the structure of the page or article they’re reading. Sometimes you may have a sub- sub heading (h3). After Image Insert Subheadings help the reader follow the structure of the page or article they’re reading. Sometimes you may have a sub-sub heading (h3). Subheadings help the reader follow the structure of the page or article they’re reading. Sometimes you may have a sub- sub heading (h3).

CSS

+ Understanding CSS Every HTML element has an invisible box surrounding it. creates the first box then every tag following creates boxes within the original box. CSS must be plugged into HTML through the tag if it is not being written on a separate document. CSS allows you to add color to the border of the box, change the background color of the box, change the text within the box, and change the height and width of the box in pixels. This is the Main Heading This is an introduction to the reset of the page. This is a Sub-Heading Subheadings help the reader follow the structure of the page or article they’re reading. Sometimes you may have a sub-sub heading (h3).

+ CSS Associates Style Rules with HTML Elements A CSS Rule contains 2 parts: 1. a selector, and a 2. Declaration Selectors indicate which element the rule applies to; and Declarations indicate how the element referred to should be styled. p { font-family: sans-serif; } selector declaration

+ CSS Properties Affect How Elements Are Displayed Declarations sit in between the { } brackets. Within every declaration is two parts: 1.A property, and 2.A value h1, h2, h3 { font-family: Arial; color: #ffffff; } Property describes the aspect of the element you want to change (i.e. color) Value describes the speficic setting for the chosen element and property.

+ Example of CSS Working with HTML WIB Rocks don’t you guys love WIB? body { font-family: arial; background-color: #A4A3A5 } h1 { color: #ffffff } P { color: # } WIB Rocks don’t you guys love WIB? WEBHTML+CSS

+ Helpful Links if You’re Interested in Learning to Code! Elle & Company Design Code Academy Code.org Codeschool.com