Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Community Codes: Intro to HTML/CSS
Search
Taylor Christensen
August 08, 2017
Programming
0
51
Community Codes: Intro to HTML/CSS
Slides for presentation/workshop at Community Codes meetup in San Marcos, Texas. (Aug 2017)
Taylor Christensen
August 08, 2017
Tweet
Share
More Decks by Taylor Christensen
See All by Taylor Christensen
WordCamp Austin: Google Webmaster Tools
taylortrc
1
200
Other Decks in Programming
See All in Programming
A Journey of Contribution and Collaboration in Open Source
ivargrimstad
0
1.2k
AI時代におけるSRE、 あるいはエンジニアの生存戦略
pyama86
6
1.2k
Macとオーディオ再生 2024/11/02
yusukeito
0
390
TypeScriptでライブラリとの依存を限定的にする方法
tutinoko
3
740
Outline View in SwiftUI
1024jp
1
350
Enabling DevOps and Team Topologies Through Architecture: Architecting for Fast Flow
cer
PRO
0
370
ローコードSaaSのUXを向上させるためのTypeScript
taro28
1
670
Why Jakarta EE Matters to Spring - and Vice Versa
ivargrimstad
0
1.3k
Realtime API 入門
riofujimon
0
150
見せてあげますよ、「本物のLaravel批判」ってやつを。
77web
7
7.9k
Micro Frontends Unmasked Opportunities, Challenges, Alternatives
manfredsteyer
PRO
0
130
romajip: 日本の住所CSVデータを活用した英語住所変換ライブラリを作った話
sangunkang
0
300
Featured
See All Featured
Gamification - CAS2011
davidbonilla
80
5k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
131
33k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
The Power of CSS Pseudo Elements
geoffreycrofte
73
5.3k
GraphQLの誤解/rethinking-graphql
sonatard
67
10k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
159
15k
Building Your Own Lightsaber
phodgson
103
6.1k
Imperfection Machines: The Place of Print at Facebook
scottboms
265
13k
Reflections from 52 weeks, 52 projects
jeffersonlam
346
20k
A better future with KSS
kneath
238
17k
Being A Developer After 40
akosma
87
590k
Ruby is Unlike a Banana
tanoku
97
11k
Transcript
Intro to HTML/CSS @communitycodes /communitycodes Taylor Christensen @taylortrc
Thanks to our sponsor! @SplashCoWork /SplashCowork
Introductions • Name • Tech Background (if any) • What
do you hope to learn? (tonight, this year, future)
Where do we start? • Browser (HTML, CSS, JS) •
Server (Java, Ruby, ASP, PHP, C+, JS Frameworks…) • Database (SQL, Mongo)
HTML • “markup language for creating Web pages” • “structure
of Web pages” • “building blocks” html head body doctype title meta header footer aside article nav logo h1 p p nav h3 p container
HTML Elements • <html> • <head> • <body> • <h1…h6>
• <p> • <img> • <a>
HTML Tagging <tagname>content, copy, media here…</tagname> <p>My first paragraph here!</p>
<title>My first website</title>
HTML Attributes • href • title • size • style
<a href=“index.html”>Link here!</a> <img src=“logo.png” alt=“Logo”> <p title=“Hover text here”> This is a paragraph. </p>
CSS Styles • color • font-size • font-family • background
<a href=“index.html” style=“color:red;”>Link here!</a> <p style=“font-size:14pt;”>Hi!</p> <p style=“background:blue;”> This is a paragraph. </p>
CSS Location <p style=“font-size:14pt;”>Hi!</p> Inline <style> p { font-size:14pt; }
</style> Internal External <link rel=“stylesheet” type=“text/css” href=“style.css”>
CSS Positioning From W3Schools - https://www.w3schools.com/css/css_boxmodel.asp
<div> + Classes “The <div> element is often used as
a container for other HTML elements.” <div style=“color:red;”>Content</div> <div class=“main-section”> <p>Paragraph content here.</p> </div> <style> .main-section p { font-size: 16px; } </style>
Advanced Elements • Form • Script • Aside (sidebar) •
Figure • Nav • Time • Progress • Video / Audio • Geolocation
Examples (demo)
Resource: References
Resource: References
Resource: References
Resource: References
Resource: References
Resource: References
Resource: Inspect Element
Resource: Code Editor • Notepad (PC) • TextEdit (Mac) •
Atom • Sublime
Resource: Validators • W3Schools Style Guide • HTML Validator •
CSS Validator W3Schools Style Guide (www.w3schools.com/html/html5_syntax.asp) W3C Markup Validators (validator.w3.org)
Resource: Server • Hosting • FTP • CodePen