SlideShare une entreprise Scribd logo
1  sur  53
Télécharger pour lire hors ligne
Frontend Crash Course
July 2017
WIFI: Digital Ignition
Password: Countdown54321
http://bit.ly/html-crash-course
1
Welcome to "Frontend Crash Course" sponsored by Thinkful. The Wi-Fi network is X and the password is Y The website for this class is Z.
Speaker notes
Instructor
John Brown
Thinkful Student
Web Coordinator
TAs
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 2
I’m _______. I’m a ___________. Here with me today are my assistants ______________.
Speaker notes
About you
What's your name?
What brought you here today?
What is your programming experience?
http://bit.ly/html-crash-coursehttp://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 3
Before we continue, I’d like to get an idea of who’s here today. So if you wouldn’t mind, I’d like to go around the room and have everyone say their
name, what brought you here today, and your programming experience. And it's okay if you have no experience, that’s who we’ve designed this
class for.
Speaker notes
About Thinkful
Thinkful helps people become developers or data scientists
through 1-on-1 mentorship and project-based learning
These workshops are built using this approach.These workshops are built using this approach.
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 4
Thanks everyone for coming. Just a little bit about Thinkful: thinkful is a bootcamp designed to help people become developers and data scientists
through 1-on-1 mentorship and project based learning. We’ve structured this class around that approach to give you the best beginner coding
experience possible.
Speaker notes
Suggestions for learning
Don't get discouraged, struggle leads to masterystruggle leads to mastery
Don't be shy, take full advantage of our supporttake full advantage of our support
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 5
A couple things before we get started. First, if you’re struggling on a concept or part of your application, don’t get discouraged. The struggle of
learning to work through problems, especially in coding, is what’s going to make you a better developer. Second, if you feel stuck and you’re not sure
what to do next, place ask for help. We’re here to make sure you get the most support possible to learn as much as you can about the material.
Speaker notes
Agenda
Learn key HTML and CSS concepts (30 min)
Go over the assignments (10 min)
Complete challenges with support (30 min)
Steps to continue learning (10 min)
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 6
Here’s our agenda for tonight. First, I’ll talk about conceptually how the web works and how that relates to our code tonight. Then I’ll go over the
fundamentals of the code you’ll be writing to complete the challenges we’re going to give you. Then I’ll show you where the assignments are located
and go over the first one with you. Then for the bulk of the night, you will have the opportunity to code on your own, using myself and the TA’s as
needed to assist with completing the assignments. Then we’ll go over some next steps for learning.
Speaker notes
How the web works
Type a URL from a client (e.g. google.com)​
Browser sends an HTTP request asking for specific files
Browser receives those files and renders them as a website
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 7
On a basic level, the web works through communication between a browser like google chrome and a server. The user enters a web address like
google.com into a browser and hits enter. Then the browser sends a request to the server that has the files for google.com on it. And the server
sends back those files to the browser to load.
Speaker notes
Client/Servers
Client (sends requests)
Frontend Developer
Manages what user sees
Server (sends response)
Backend Developer
Manages what app does
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 8
A browser, also called the client, can be anything that connects to the internet. Your laptop, your phone, all those things are clients. They’re
responsible for sending requests and loading the pages from files sent back from the server. It manages what the app looks like. This is the
responsibility of a frontend developer. The server holds all those files. Its job is to shoot specific files to the client based on its requests. It manages
what the app actually does and is the responsibility of the backend developer
Speaker notes
Example: facebook.com
Client Server
Open browser
and navigate to
facebook.com
HTML, CSS, &
Javascrip render
newsfeed
Request
Response
Algorithm
determines
content of feed.
Sends back
HTML, CSS,
Javascript files
Application LogicApplication Logic
Initial requestInitial request
Following responseFollowing response
http://bit.ly/html-crash-course
9
Wifi: Digital Ignition
Password: Countdown54321
Let's break it down with an example. Let's say I log into facebook. When I try to go to that page, my computer is going to send a request to
facebook’s server. Facebook’s server is going to look at that request and think, “okay, what should I send back to ${your name}’s computer?” Its
going to look through my friend’s posts and determine using an algorithm what’s most important to put in my feed. Then it’ll send all that info,
including the files to display the info, to my computer. My computer will then read and interpret those files and display the information on my screen.
Speaker notes
How this relates to today
Client Server
Open browser
and navigate to
facebook.com
HTML, CSS, &
Javascrip render
newsfeed
Request
Response
Algorithm
determines
content of feed.
Sends back
HTML, CSS,
Javascript files
Application LogicApplication LogicInitial requestInitial request
Following responseFollowing response
We'll be writing
these files that the
brower will render
10
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321
We’ll be writing the HTML and CSS files that the server is sending back to the client to load.
Speaker notes
HTML - (HyperText Markup Language)
<h1 class="intro">Hi there!</h1>
Attribute
Opening
section tag
h1
element
Closing
section tag
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 11
HTML, aka hypertext markup language is used to create the structure of a website. It can create hundreds of sections on a page that all have
different purposes. Each of these sections is called an element. Here is an example of an h1 HTML element denoted by the opening tag. H1 stands
for header one or the largest header. The computer is going to read the name of this opening tag and create an element on the page according to
that name, in this case, an h1 element. Inside of the opening tag, we have some other information here. The first is an attribute called ‘class’. Class
is used to create a label for an element that we can refer back to elsewhere in our code. In this case, we set the class attribute to “intro”. We can use
“intro” to refer to this specific element. Finally, we have to tell the computer where this element should end. To do that, we use a closing tag which
has the name of the element as well as a forward slash.
Speaker notes
HTML - structure
<html>
<body>
<h1 class="title">Hello world!</h1>
</body>
</html>
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 12
This is the typical structure of a html file. Every file will start with an html tag, creating an html element, and inside that will be other elements like the
body element. Everything inside the body element will actually show up on the page, like this h1 tag.
Speaker notes
HTML tags, elements, attributes
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 13
Notes for Slide 13:
HTML end code:
Hey, I'm ${your name}
This is a different header tag:
Hey, I'm ${your name} also
This is a link, property is hypertext reference:
Put elements inside each other:
This is a paragraph
Tell them they don't need to know all the tags!
I’m going to show you a few different elements and explain how they work. First we have our basic h1 element that’s displaying “Hey, I’m ${your
name}”. We can use a different element if we wanted to change the size of our header, an h2 element, like this (write out
Hey, I’m ${your name} too
). This makes another element on our page and uses the rules associated with that element to display the text. Another really common element is
the anchor tag. Anytime you’ve ever seen a link on a page that sends you to another page on the internet, chances are that that link is an anchor
tag. Anchor tags are special because, for them to work, we need to have an attribute called href which stands for hypertext reference. We can make
a link using an anchor tag, like this (write Google) then we write our closing tag (write ). Another important tag is the div tag. A div tag doesn’t really
show up on the screen until you style it to show up, which I’ll show you in a second, but it's used to create sections on the page that other elements
Speaker notes
Google
can go inside of. For example, we can make a div tag and then put a paragraph inside that div element (write
This is a paragraph
) then we close it. I wanted to show you that so you know that you can put elements inside other elements. I’ll explain the benefits of that in just a bit.
HTML, by itself, is boring
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 14
HTML by itself looks like this. It's just the structure and content of the page. This is a screenshot of facebook after I removed all the CSS files from
the page. I’m going to go over the basics of CSS that would allow us to improve upon this plain structure.
Speaker notes
CSS - (Cascading Style Sheets)
h1 {
color: blue;
}
Value
Property
Selector
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 15
CSS, cascading style sheets, are rulesets that use the class labels and change how the elements look. In order to do that, we have to target the
element we want to change. In this example, we’re targeting h1 elements. Everything inside the curly brackets are the properties that will be
changed. (...)
Speaker notes
CSS selectors, properties, values
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 16
Going back to our html, I’ll show you a few properties you can manipulate to change what the page looks like. First, we’ll use the code from that
example and say h1 and set the color to blue (write h1 { color: blue; }). Make sure to always end your property value statements with a semi-colon.
Now, if I didn’t want to change all the h1 elements, but only a specific one, I would need to somehow target that specific element by using its class
name. So let’s give this h2 a class of purple (write class=”purple”), then make a rule set in the CSS area for purple (write .purple { color:purple;}).
We’re targeting a class here, not an element, so in CSS we have to put a period before the name of the class to tell the computer we’re talking about
a class. Next, let's change up our link. We already have an attribute for our link, href, but HTML allows us to set as many attributes as we want inside
out opening tag. So lets give our anchor tag a class of link (write class=”link”) and now we can change how the link looks. The default look of a link is
blue with an underline under it. But maybe that’s not really how we want links to look on our site. So let's change the color from blue to yellow. In our
CSS we write out the class name then set the property color to yellow (write .link { color: yellow;}). But, I also don’t really want this underline here. I
want my link to look just like text, but yellow. So how do I remove that underline? Well, let's pretend I completely forgot what that property is to
remove the underline. This is where a developer’s most powerful tool comes in: Google. I’m going to go to google and I’ll look up how to remove an
underline (google how to remove underline css). And I want to put CSS at the end to help google narrow down my searches. Okay, so lets try the
first link. This is w3schools, a fantastic resource for looking up answers about coding. Lets just do a quick find on the page for underline and here we
go. This says I can use the property text-decoration to manipulate my underline and I would just set the value to none. Let's try that. (write text-
decoration: none;) And there we go. Now my links don’t have underlines. Now the next thing I’d like to explain are is the div. Like I said before, the
div acts like a section on the page that separates elements. So first, let's give the div some space on the page so you can see how we can use it to
create sections. I’ll give it a background color (write div {background-color: red;}) and then I can also set values for size of the div. I’m going to set
the height of the div (write height: 100px;). Now we’ve made a section. This is the div element that has the paragraph element inside of it, but we can
still move the paragraph element around inside the div. Let’s give the paragraph a class (write class=”indented”) then use that class to target the
paragraph and make it move to the center of the div. We can do that using a property called text-align (write .indented { text-align:center;}) Now the
paragraph is moved to the center of the div. Any questions.
Notes for slide 16:
CSS end code:
Use example to change color:
Hey, I'm ${your name}
h1 {
color: blue;
}
Speaker notes
Class name instead of element name:
Hey, I'm ${your name} also
.purple {
color: purple;
}
Multiple attributes: have them Google!!
.link {
color: yellow;
text-decoration: none;
}
We can position text
This is a paragraph
.centered {
text-align: center;
}
Google
CSS has lots of properties and values
p {
color: #CCCCCC;
font-family: helvetica;
border: 5px solid blue;
}
div {
background-image: url("imageFile.jpg");
width: 50%;
height: 70%;
}
.loginButton {
border: none;
background-color: rgba(34, 124, 45, 0.5);
}
Lots of properties:
http://www.htmldog.com/references/css/properties/
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 17
CSS has lots of properties and each of those has certain values that they can be given. These are just a few examples. For instance, color can we
set with keywords that the browser recognizes, or it can be set with hex codes like this one that consist of letters and numbers allowing for more
specific shades of colors. You can also use rgb colors like here. We can set font type using font-family. You can see width and height to pixels or
percentages. For a full list of them, feel free to go to this website or just google what you’re looking for and chances are you’ll find it.
Speaker notes
Margin, border, and padding
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 18
CSS also allows us to size and shape our elements. You can think of HTML elements as boxes on the screen. These boxes have a couple different
ways of being moved around the screen and sized. Going from inner-most to outer-most, there’s width and height, padding, the border of the box,
and then margin.
Speaker notes
Margin, border, and padding
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 19
Here, I have a div with a red background and with a paragraph inside of it. I’m going to use those sizing properties to show you how to manipulate
the div around the paragraph. The first is width and height. I can set the height to 300 pixels and the div fills up more on the page (write height:
300px;). “Px” the way of writing pixels in CSS. You could also use percentages if you wanted to. One level up from that is padding. You can set
padding to pixels or percentages as well. I’ll set the padding for this div to 20px (write padding: 20px;). Notice how the paragraph moves away from
the edge of the div its inside. I created padding between the content of the div and the edge of it. Then we have borders. We can use the border
property to change our div’s border. Border takes three values inside it. Its needs the width of the border, the type of border, and the color. Let’s go
ahead and make the border 10 pixels, solid, and black (write border: 10px solid black;). Now our div has a thickened border around it. The last sizing
property is margin. You can think of margin just like the margin on a piece of paper you print out. Generally those have a 1 inch default margin. Lets
add a margin of 30 pixels (write margin: 30px;). Notice how the edge of the div now has space between it and the edge of the webpage.
Code:
.redbackground {
background-color: red;
height: 300px;
padding: 20px;
border: 10px solid black;
margin: 30px;
}
.centered {
text-align: center;
}
Speaker notes
Real developers use Google... a lot
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 20
Google is one of your most valuable tools as a developer. Finding the solution to a new problem through research is a very common task of a real
developer. I encourage you to, if you’re unsure of how to solve a problem, to google a question and look for an answer. If you encounter a problem, it
more than likely that another developer has had the same problem and have posted it online.
Speaker notes
Assignments for tonight
Go to: http://bit.ly/tf-html-classroom
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 21
Here is the link to the assignments. Once you open it, sign up for repl.it and then click on the classroom on the left. Work through these challenges
as best you can. Make sure to google things you’re unsure on and if you’re stuck, we’re here to help you out. Don’t hesitate to ask!
Speaker notes
Ways to keep learning
More Structure
Less Structure
More SupportLess Support
22
So I just wanted to spend the last few minutes talking about different ways to keep learning.
I know that there are so many different paths, some of which, like Google. we even used today.
Some paths like CodeAcademy are great resources to learn programming fundamentals but often times they lack the support resources to help
students when they run into a problem.
And these two factors of structure and support are the two things that I recommend students look for when looking at different paths to keep learning
- as these two factors are the top two success factors for a successful student.
Speaker notes
Our instructors help us write, teach, and
improve our workshops & curriculum
23
In terms of structure, students should be asking what does the program look like - is it 1:1, 1:15 1:30? and what is the frequency?
From our experience with students, we've learned that the most effective support is 1:1 - this way each student can get their specific questions and
challenges addressed to keep learning and building.
In our program, each student is working 1:1 with a mentor throughout the program and these mentoring sessions can be scheduled around your
schedule, allowing students to have flexibility to learn how to program while maintaining their job
Speaker notes
Support 'round the clock
Your Mentor
Q&A Sessions
Career Coach
In-person Workshops
Slack
Program Manager
YouYou
24
The second thing I tell students to look for is support, both technically and professionally.
On the technical side of things, how often are they able to meet with a professional -
1x/week, 3 x/week 24 /7?
And on the career side of things, are they working with someone to make sure that they are really job ready? Does this career support happen
during the program?
We dont want students to sacrifice flexibility for support and this high level of support is really what drives our high placement rate.
Speaker notes
Our results
Zachary HoltZachary Holt
Web Developer
Sierra GreggSierra Gregg
Software Engineer
JP EarnestJP Earnest
Web Developer
Web Development Bootcamp Jobs Report
93%93%
Grad job-placement rateGrad job-placement rate
$19,855$19,855
Average salary increaseAverage salary increase
25
Trying Thinkful
Talk to me (or email jasjit@thinkful.com ) if you'reTalk to me (or email jasjit@thinkful.com ) if you're
interestedinterested
Get a free trial of Thinkful
with three mentor sessions
Starting with HTML/CSS/JS,
with option to continue to
full program
26
http://bit.ly/tf-feedback
July 2017
http://bit.ly/html-crash-course
Wifi: Digital Ignition
Password: Countdown54321 27

Contenu connexe

Tendances

ASP.NET MVC Interview Questions and Answers by Shailendra Chauhan
ASP.NET MVC Interview Questions and Answers by Shailendra ChauhanASP.NET MVC Interview Questions and Answers by Shailendra Chauhan
ASP.NET MVC Interview Questions and Answers by Shailendra ChauhanShailendra Chauhan
 
BASIC HTML PRESENTATION
BASIC HTML PRESENTATIONBASIC HTML PRESENTATION
BASIC HTML PRESENTATIONTHABISO BALOYI
 
Web design in 7 days by waqar
Web design in 7 days by waqarWeb design in 7 days by waqar
Web design in 7 days by waqarWaqar Chodhry
 
Lecture 1 - Comm Lab: Web @ ITP
Lecture 1 - Comm Lab: Web @ ITPLecture 1 - Comm Lab: Web @ ITP
Lecture 1 - Comm Lab: Web @ ITPyucefmerhi
 
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsKeith Borgonia Manatad
 
WEB DESIGNING MODULE
WEB DESIGNING MODULEWEB DESIGNING MODULE
WEB DESIGNING MODULEmar jun
 
Copycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastCopycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastEdward806784
 
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSSRails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSSTimo Herttua
 
Introduction to html fundamental concepts
Introduction to html fundamental conceptsIntroduction to html fundamental concepts
Introduction to html fundamental conceptsTsebo Shaun Masilo
 
Web app-la-jan-2
Web app-la-jan-2Web app-la-jan-2
Web app-la-jan-2Thinkful
 
Hypertext markup language (html)
Hypertext markup language (html)Hypertext markup language (html)
Hypertext markup language (html)Aksa Sahi
 
THE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money onlineTHE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money onlineEdward806784
 
bawawjspdx082117
bawawjspdx082117bawawjspdx082117
bawawjspdx082117Thinkful
 
Html for beginners part I
Html for beginners part IHtml for beginners part I
Html for beginners part IUnaib Aslam
 
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateSean Burgess
 

Tendances (19)

ASP.NET MVC Interview Questions and Answers by Shailendra Chauhan
ASP.NET MVC Interview Questions and Answers by Shailendra ChauhanASP.NET MVC Interview Questions and Answers by Shailendra Chauhan
ASP.NET MVC Interview Questions and Answers by Shailendra Chauhan
 
BASIC HTML PRESENTATION
BASIC HTML PRESENTATIONBASIC HTML PRESENTATION
BASIC HTML PRESENTATION
 
Web design in 7 days by waqar
Web design in 7 days by waqarWeb design in 7 days by waqar
Web design in 7 days by waqar
 
Lecture 1 - Comm Lab: Web @ ITP
Lecture 1 - Comm Lab: Web @ ITPLecture 1 - Comm Lab: Web @ ITP
Lecture 1 - Comm Lab: Web @ ITP
 
Lecture2 CSS 2
Lecture2  CSS 2Lecture2  CSS 2
Lecture2 CSS 2
 
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and Paragraphs
 
WEB DESIGNING MODULE
WEB DESIGNING MODULEWEB DESIGNING MODULE
WEB DESIGNING MODULE
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Let me design
Let me designLet me design
Let me design
 
Copycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastCopycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fast
 
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSSRails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSS
 
Introduction to html fundamental concepts
Introduction to html fundamental conceptsIntroduction to html fundamental concepts
Introduction to html fundamental concepts
 
Web app-la-jan-2
Web app-la-jan-2Web app-la-jan-2
Web app-la-jan-2
 
Hypertext markup language (html)
Hypertext markup language (html)Hypertext markup language (html)
Hypertext markup language (html)
 
THE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money onlineTHE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money online
 
bawawjspdx082117
bawawjspdx082117bawawjspdx082117
bawawjspdx082117
 
Html for beginners part I
Html for beginners part IHtml for beginners part I
Html for beginners part I
 
Lecture1 B Frames&Forms
Lecture1 B  Frames&FormsLecture1 B  Frames&Forms
Lecture1 B Frames&Forms
 
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
 

Similaire à Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53

Introjs10.5.17SD
Introjs10.5.17SDIntrojs10.5.17SD
Introjs10.5.17SDThinkful
 
Front End Lecture 1.pptx
Front End Lecture 1.pptxFront End Lecture 1.pptx
Front End Lecture 1.pptxmalise2997
 
The Factors For The Website
The Factors For The WebsiteThe Factors For The Website
The Factors For The WebsiteJulie May
 
Creating Openbravo Workspace Widgets
Creating Openbravo Workspace WidgetsCreating Openbravo Workspace Widgets
Creating Openbravo Workspace WidgetsRob Goris
 
Going native with html5 web components
Going native with html5 web componentsGoing native with html5 web components
Going native with html5 web componentsJames York
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentEvan Mullins
 
1 Introduction to Drupal Web Development
1 Introduction to Drupal Web Development1 Introduction to Drupal Web Development
1 Introduction to Drupal Web DevelopmentWingston
 
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScriptAn Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScriptTroyfawkes
 
Frontend Crash Course
Frontend Crash CourseFrontend Crash Course
Frontend Crash CourseTJ Stalcup
 
La build your own website september 5
La build your own website september 5La build your own website september 5
La build your own website september 5Thinkful
 
HTML5 Up and Running
HTML5 Up and RunningHTML5 Up and Running
HTML5 Up and RunningCodemotion
 
Internet programming notes
Internet programming notesInternet programming notes
Internet programming notesDurgadevi palani
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66Ivy Rueb
 
JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1Gene Babon
 

Similaire à Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53 (20)

Introjs10.5.17SD
Introjs10.5.17SDIntrojs10.5.17SD
Introjs10.5.17SD
 
Front End Lecture 1.pptx
Front End Lecture 1.pptxFront End Lecture 1.pptx
Front End Lecture 1.pptx
 
BYOWHC823
BYOWHC823BYOWHC823
BYOWHC823
 
Day1
Day1Day1
Day1
 
The Factors For The Website
The Factors For The WebsiteThe Factors For The Website
The Factors For The Website
 
Creating Openbravo Workspace Widgets
Creating Openbravo Workspace WidgetsCreating Openbravo Workspace Widgets
Creating Openbravo Workspace Widgets
 
INTRODUCTIONS OF HTML
INTRODUCTIONS OF HTMLINTRODUCTIONS OF HTML
INTRODUCTIONS OF HTML
 
Going native with html5 web components
Going native with html5 web componentsGoing native with html5 web components
Going native with html5 web components
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
 
Web design in 7 days
Web design in 7 daysWeb design in 7 days
Web design in 7 days
 
1 Introduction to Drupal Web Development
1 Introduction to Drupal Web Development1 Introduction to Drupal Web Development
1 Introduction to Drupal Web Development
 
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScriptAn Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
 
Frontend Crash Course
Frontend Crash CourseFrontend Crash Course
Frontend Crash Course
 
La build your own website september 5
La build your own website september 5La build your own website september 5
La build your own website september 5
 
HTML5 Up and Running
HTML5 Up and RunningHTML5 Up and Running
HTML5 Up and Running
 
Internet programming notes
Internet programming notesInternet programming notes
Internet programming notes
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-13-66
 
JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1JavaScript Missing Manual, Ch. 1
JavaScript Missing Manual, Ch. 1
 
Lecture 9 Professional Practices
Lecture 9 Professional PracticesLecture 9 Professional Practices
Lecture 9 Professional Practices
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 

Plus de Ivy Rueb

Getting Started in Tech
Getting Started in TechGetting Started in Tech
Getting Started in TechIvy Rueb
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317Ivy Rueb
 
Build your Own Twitter bot 09/20
Build your Own Twitter bot 09/20Build your Own Twitter bot 09/20
Build your Own Twitter bot 09/20Ivy Rueb
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScriptIvy Rueb
 
Instagram filters (10-5)
Instagram filters (10-5)Instagram filters (10-5)
Instagram filters (10-5)Ivy Rueb
 
Instagram filters (8 24)
Instagram filters (8 24)Instagram filters (8 24)
Instagram filters (8 24)Ivy Rueb
 
Instagram filters (8 24)
Instagram filters (8 24)Instagram filters (8 24)
Instagram filters (8 24)Ivy Rueb
 
Build Own Website
Build Own WebsiteBuild Own Website
Build Own WebsiteIvy Rueb
 
Build a Game with Javascript
Build a Game with Javascript Build a Game with Javascript
Build a Game with Javascript Ivy Rueb
 
Frontend Crash Coarse 09/28
Frontend Crash Coarse 09/28Frontend Crash Coarse 09/28
Frontend Crash Coarse 09/28Ivy Rueb
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScriptIvy Rueb
 
Build a Virtual Pet with Javascript
Build a Virtual Pet with JavascriptBuild a Virtual Pet with Javascript
Build a Virtual Pet with JavascriptIvy Rueb
 
Build a Web App with Javascript and Jquery 09/19
Build a Web App with Javascript and Jquery 09/19Build a Web App with Javascript and Jquery 09/19
Build a Web App with Javascript and Jquery 09/19Ivy Rueb
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81Ivy Rueb
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Ivy Rueb
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Ivy Rueb
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)Ivy Rueb
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72Ivy Rueb
 

Plus de Ivy Rueb (20)

Getting Started in Tech
Getting Started in TechGetting Started in Tech
Getting Started in Tech
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-33-82-317
 
Build your Own Twitter bot 09/20
Build your Own Twitter bot 09/20Build your Own Twitter bot 09/20
Build your Own Twitter bot 09/20
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScript
 
Instagram filters (10-5)
Instagram filters (10-5)Instagram filters (10-5)
Instagram filters (10-5)
 
Instagram filters (8 24)
Instagram filters (8 24)Instagram filters (8 24)
Instagram filters (8 24)
 
Instagram filters (8 24)
Instagram filters (8 24)Instagram filters (8 24)
Instagram filters (8 24)
 
Build Own Website
Build Own WebsiteBuild Own Website
Build Own Website
 
Build a Game with Javascript
Build a Game with Javascript Build a Game with Javascript
Build a Game with Javascript
 
Frontend Crash Coarse 09/28
Frontend Crash Coarse 09/28Frontend Crash Coarse 09/28
Frontend Crash Coarse 09/28
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScript
 
Build a Virtual Pet with Javascript
Build a Virtual Pet with JavascriptBuild a Virtual Pet with Javascript
Build a Virtual Pet with Javascript
 
Build a Web App with Javascript and Jquery 09/19
Build a Web App with Javascript and Jquery 09/19Build a Web App with Javascript and Jquery 09/19
Build a Web App with Javascript and Jquery 09/19
 
Deck 6-80
Deck 6-80Deck 6-80
Deck 6-80
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-81
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72 (1)
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-72
 
Deck 4-67
Deck 4-67Deck 4-67
Deck 4-67
 

Dernier

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 

Dernier (20)

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 

Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-12-53

  • 1. Frontend Crash Course July 2017 WIFI: Digital Ignition Password: Countdown54321 http://bit.ly/html-crash-course 1
  • 2. Welcome to "Frontend Crash Course" sponsored by Thinkful. The Wi-Fi network is X and the password is Y The website for this class is Z. Speaker notes
  • 3. Instructor John Brown Thinkful Student Web Coordinator TAs http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 2
  • 4. I’m _______. I’m a ___________. Here with me today are my assistants ______________. Speaker notes
  • 5. About you What's your name? What brought you here today? What is your programming experience? http://bit.ly/html-crash-coursehttp://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 3
  • 6. Before we continue, I’d like to get an idea of who’s here today. So if you wouldn’t mind, I’d like to go around the room and have everyone say their name, what brought you here today, and your programming experience. And it's okay if you have no experience, that’s who we’ve designed this class for. Speaker notes
  • 7. About Thinkful Thinkful helps people become developers or data scientists through 1-on-1 mentorship and project-based learning These workshops are built using this approach.These workshops are built using this approach. http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 4
  • 8. Thanks everyone for coming. Just a little bit about Thinkful: thinkful is a bootcamp designed to help people become developers and data scientists through 1-on-1 mentorship and project based learning. We’ve structured this class around that approach to give you the best beginner coding experience possible. Speaker notes
  • 9. Suggestions for learning Don't get discouraged, struggle leads to masterystruggle leads to mastery Don't be shy, take full advantage of our supporttake full advantage of our support http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 5
  • 10. A couple things before we get started. First, if you’re struggling on a concept or part of your application, don’t get discouraged. The struggle of learning to work through problems, especially in coding, is what’s going to make you a better developer. Second, if you feel stuck and you’re not sure what to do next, place ask for help. We’re here to make sure you get the most support possible to learn as much as you can about the material. Speaker notes
  • 11. Agenda Learn key HTML and CSS concepts (30 min) Go over the assignments (10 min) Complete challenges with support (30 min) Steps to continue learning (10 min) http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 6
  • 12. Here’s our agenda for tonight. First, I’ll talk about conceptually how the web works and how that relates to our code tonight. Then I’ll go over the fundamentals of the code you’ll be writing to complete the challenges we’re going to give you. Then I’ll show you where the assignments are located and go over the first one with you. Then for the bulk of the night, you will have the opportunity to code on your own, using myself and the TA’s as needed to assist with completing the assignments. Then we’ll go over some next steps for learning. Speaker notes
  • 13. How the web works Type a URL from a client (e.g. google.com)​ Browser sends an HTTP request asking for specific files Browser receives those files and renders them as a website http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 7
  • 14. On a basic level, the web works through communication between a browser like google chrome and a server. The user enters a web address like google.com into a browser and hits enter. Then the browser sends a request to the server that has the files for google.com on it. And the server sends back those files to the browser to load. Speaker notes
  • 15. Client/Servers Client (sends requests) Frontend Developer Manages what user sees Server (sends response) Backend Developer Manages what app does http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 8
  • 16. A browser, also called the client, can be anything that connects to the internet. Your laptop, your phone, all those things are clients. They’re responsible for sending requests and loading the pages from files sent back from the server. It manages what the app looks like. This is the responsibility of a frontend developer. The server holds all those files. Its job is to shoot specific files to the client based on its requests. It manages what the app actually does and is the responsibility of the backend developer Speaker notes
  • 17. Example: facebook.com Client Server Open browser and navigate to facebook.com HTML, CSS, & Javascrip render newsfeed Request Response Algorithm determines content of feed. Sends back HTML, CSS, Javascript files Application LogicApplication Logic Initial requestInitial request Following responseFollowing response http://bit.ly/html-crash-course 9 Wifi: Digital Ignition Password: Countdown54321
  • 18. Let's break it down with an example. Let's say I log into facebook. When I try to go to that page, my computer is going to send a request to facebook’s server. Facebook’s server is going to look at that request and think, “okay, what should I send back to ${your name}’s computer?” Its going to look through my friend’s posts and determine using an algorithm what’s most important to put in my feed. Then it’ll send all that info, including the files to display the info, to my computer. My computer will then read and interpret those files and display the information on my screen. Speaker notes
  • 19. How this relates to today Client Server Open browser and navigate to facebook.com HTML, CSS, & Javascrip render newsfeed Request Response Algorithm determines content of feed. Sends back HTML, CSS, Javascript files Application LogicApplication LogicInitial requestInitial request Following responseFollowing response We'll be writing these files that the brower will render 10 http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321
  • 20. We’ll be writing the HTML and CSS files that the server is sending back to the client to load. Speaker notes
  • 21. HTML - (HyperText Markup Language) <h1 class="intro">Hi there!</h1> Attribute Opening section tag h1 element Closing section tag http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 11
  • 22. HTML, aka hypertext markup language is used to create the structure of a website. It can create hundreds of sections on a page that all have different purposes. Each of these sections is called an element. Here is an example of an h1 HTML element denoted by the opening tag. H1 stands for header one or the largest header. The computer is going to read the name of this opening tag and create an element on the page according to that name, in this case, an h1 element. Inside of the opening tag, we have some other information here. The first is an attribute called ‘class’. Class is used to create a label for an element that we can refer back to elsewhere in our code. In this case, we set the class attribute to “intro”. We can use “intro” to refer to this specific element. Finally, we have to tell the computer where this element should end. To do that, we use a closing tag which has the name of the element as well as a forward slash. Speaker notes
  • 23. HTML - structure <html> <body> <h1 class="title">Hello world!</h1> </body> </html> http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 12
  • 24. This is the typical structure of a html file. Every file will start with an html tag, creating an html element, and inside that will be other elements like the body element. Everything inside the body element will actually show up on the page, like this h1 tag. Speaker notes
  • 25. HTML tags, elements, attributes http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 13
  • 26. Notes for Slide 13: HTML end code: Hey, I'm ${your name} This is a different header tag: Hey, I'm ${your name} also This is a link, property is hypertext reference: Put elements inside each other: This is a paragraph Tell them they don't need to know all the tags! I’m going to show you a few different elements and explain how they work. First we have our basic h1 element that’s displaying “Hey, I’m ${your name}”. We can use a different element if we wanted to change the size of our header, an h2 element, like this (write out Hey, I’m ${your name} too ). This makes another element on our page and uses the rules associated with that element to display the text. Another really common element is the anchor tag. Anytime you’ve ever seen a link on a page that sends you to another page on the internet, chances are that that link is an anchor tag. Anchor tags are special because, for them to work, we need to have an attribute called href which stands for hypertext reference. We can make a link using an anchor tag, like this (write Google) then we write our closing tag (write ). Another important tag is the div tag. A div tag doesn’t really show up on the screen until you style it to show up, which I’ll show you in a second, but it's used to create sections on the page that other elements Speaker notes Google
  • 27. can go inside of. For example, we can make a div tag and then put a paragraph inside that div element (write This is a paragraph ) then we close it. I wanted to show you that so you know that you can put elements inside other elements. I’ll explain the benefits of that in just a bit.
  • 28. HTML, by itself, is boring http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 14
  • 29. HTML by itself looks like this. It's just the structure and content of the page. This is a screenshot of facebook after I removed all the CSS files from the page. I’m going to go over the basics of CSS that would allow us to improve upon this plain structure. Speaker notes
  • 30. CSS - (Cascading Style Sheets) h1 { color: blue; } Value Property Selector http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 15
  • 31. CSS, cascading style sheets, are rulesets that use the class labels and change how the elements look. In order to do that, we have to target the element we want to change. In this example, we’re targeting h1 elements. Everything inside the curly brackets are the properties that will be changed. (...) Speaker notes
  • 32. CSS selectors, properties, values http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 16
  • 33. Going back to our html, I’ll show you a few properties you can manipulate to change what the page looks like. First, we’ll use the code from that example and say h1 and set the color to blue (write h1 { color: blue; }). Make sure to always end your property value statements with a semi-colon. Now, if I didn’t want to change all the h1 elements, but only a specific one, I would need to somehow target that specific element by using its class name. So let’s give this h2 a class of purple (write class=”purple”), then make a rule set in the CSS area for purple (write .purple { color:purple;}). We’re targeting a class here, not an element, so in CSS we have to put a period before the name of the class to tell the computer we’re talking about a class. Next, let's change up our link. We already have an attribute for our link, href, but HTML allows us to set as many attributes as we want inside out opening tag. So lets give our anchor tag a class of link (write class=”link”) and now we can change how the link looks. The default look of a link is blue with an underline under it. But maybe that’s not really how we want links to look on our site. So let's change the color from blue to yellow. In our CSS we write out the class name then set the property color to yellow (write .link { color: yellow;}). But, I also don’t really want this underline here. I want my link to look just like text, but yellow. So how do I remove that underline? Well, let's pretend I completely forgot what that property is to remove the underline. This is where a developer’s most powerful tool comes in: Google. I’m going to go to google and I’ll look up how to remove an underline (google how to remove underline css). And I want to put CSS at the end to help google narrow down my searches. Okay, so lets try the first link. This is w3schools, a fantastic resource for looking up answers about coding. Lets just do a quick find on the page for underline and here we go. This says I can use the property text-decoration to manipulate my underline and I would just set the value to none. Let's try that. (write text- decoration: none;) And there we go. Now my links don’t have underlines. Now the next thing I’d like to explain are is the div. Like I said before, the div acts like a section on the page that separates elements. So first, let's give the div some space on the page so you can see how we can use it to create sections. I’ll give it a background color (write div {background-color: red;}) and then I can also set values for size of the div. I’m going to set the height of the div (write height: 100px;). Now we’ve made a section. This is the div element that has the paragraph element inside of it, but we can still move the paragraph element around inside the div. Let’s give the paragraph a class (write class=”indented”) then use that class to target the paragraph and make it move to the center of the div. We can do that using a property called text-align (write .indented { text-align:center;}) Now the paragraph is moved to the center of the div. Any questions. Notes for slide 16: CSS end code: Use example to change color: Hey, I'm ${your name} h1 { color: blue; } Speaker notes
  • 34. Class name instead of element name: Hey, I'm ${your name} also .purple { color: purple; } Multiple attributes: have them Google!! .link { color: yellow; text-decoration: none; } We can position text This is a paragraph .centered { text-align: center; } Google
  • 35. CSS has lots of properties and values p { color: #CCCCCC; font-family: helvetica; border: 5px solid blue; } div { background-image: url("imageFile.jpg"); width: 50%; height: 70%; } .loginButton { border: none; background-color: rgba(34, 124, 45, 0.5); } Lots of properties: http://www.htmldog.com/references/css/properties/ http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 17
  • 36. CSS has lots of properties and each of those has certain values that they can be given. These are just a few examples. For instance, color can we set with keywords that the browser recognizes, or it can be set with hex codes like this one that consist of letters and numbers allowing for more specific shades of colors. You can also use rgb colors like here. We can set font type using font-family. You can see width and height to pixels or percentages. For a full list of them, feel free to go to this website or just google what you’re looking for and chances are you’ll find it. Speaker notes
  • 37. Margin, border, and padding http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 18
  • 38. CSS also allows us to size and shape our elements. You can think of HTML elements as boxes on the screen. These boxes have a couple different ways of being moved around the screen and sized. Going from inner-most to outer-most, there’s width and height, padding, the border of the box, and then margin. Speaker notes
  • 39. Margin, border, and padding http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 19
  • 40. Here, I have a div with a red background and with a paragraph inside of it. I’m going to use those sizing properties to show you how to manipulate the div around the paragraph. The first is width and height. I can set the height to 300 pixels and the div fills up more on the page (write height: 300px;). “Px” the way of writing pixels in CSS. You could also use percentages if you wanted to. One level up from that is padding. You can set padding to pixels or percentages as well. I’ll set the padding for this div to 20px (write padding: 20px;). Notice how the paragraph moves away from the edge of the div its inside. I created padding between the content of the div and the edge of it. Then we have borders. We can use the border property to change our div’s border. Border takes three values inside it. Its needs the width of the border, the type of border, and the color. Let’s go ahead and make the border 10 pixels, solid, and black (write border: 10px solid black;). Now our div has a thickened border around it. The last sizing property is margin. You can think of margin just like the margin on a piece of paper you print out. Generally those have a 1 inch default margin. Lets add a margin of 30 pixels (write margin: 30px;). Notice how the edge of the div now has space between it and the edge of the webpage. Code: .redbackground { background-color: red; height: 300px; padding: 20px; border: 10px solid black; margin: 30px; } .centered { text-align: center; } Speaker notes
  • 41. Real developers use Google... a lot http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 20
  • 42. Google is one of your most valuable tools as a developer. Finding the solution to a new problem through research is a very common task of a real developer. I encourage you to, if you’re unsure of how to solve a problem, to google a question and look for an answer. If you encounter a problem, it more than likely that another developer has had the same problem and have posted it online. Speaker notes
  • 43. Assignments for tonight Go to: http://bit.ly/tf-html-classroom http://bit.ly/html-crash-course Wifi: Digital Ignition Password: Countdown54321 21
  • 44. Here is the link to the assignments. Once you open it, sign up for repl.it and then click on the classroom on the left. Work through these challenges as best you can. Make sure to google things you’re unsure on and if you’re stuck, we’re here to help you out. Don’t hesitate to ask! Speaker notes
  • 45. Ways to keep learning More Structure Less Structure More SupportLess Support 22
  • 46. So I just wanted to spend the last few minutes talking about different ways to keep learning. I know that there are so many different paths, some of which, like Google. we even used today. Some paths like CodeAcademy are great resources to learn programming fundamentals but often times they lack the support resources to help students when they run into a problem. And these two factors of structure and support are the two things that I recommend students look for when looking at different paths to keep learning - as these two factors are the top two success factors for a successful student. Speaker notes
  • 47. Our instructors help us write, teach, and improve our workshops & curriculum 23
  • 48. In terms of structure, students should be asking what does the program look like - is it 1:1, 1:15 1:30? and what is the frequency? From our experience with students, we've learned that the most effective support is 1:1 - this way each student can get their specific questions and challenges addressed to keep learning and building. In our program, each student is working 1:1 with a mentor throughout the program and these mentoring sessions can be scheduled around your schedule, allowing students to have flexibility to learn how to program while maintaining their job Speaker notes
  • 49. Support 'round the clock Your Mentor Q&A Sessions Career Coach In-person Workshops Slack Program Manager YouYou 24
  • 50. The second thing I tell students to look for is support, both technically and professionally. On the technical side of things, how often are they able to meet with a professional - 1x/week, 3 x/week 24 /7? And on the career side of things, are they working with someone to make sure that they are really job ready? Does this career support happen during the program? We dont want students to sacrifice flexibility for support and this high level of support is really what drives our high placement rate. Speaker notes
  • 51. Our results Zachary HoltZachary Holt Web Developer Sierra GreggSierra Gregg Software Engineer JP EarnestJP Earnest Web Developer Web Development Bootcamp Jobs Report 93%93% Grad job-placement rateGrad job-placement rate $19,855$19,855 Average salary increaseAverage salary increase 25
  • 52. Trying Thinkful Talk to me (or email jasjit@thinkful.com ) if you'reTalk to me (or email jasjit@thinkful.com ) if you're interestedinterested Get a free trial of Thinkful with three mentor sessions Starting with HTML/CSS/JS, with option to continue to full program 26