42
Web Programming with Python and JavaScript

Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

  • Upload
    others

  • View
    28

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Web Programming with Python and JavaScript

Page 2: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Git

Page 3: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

Page 4: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes

Page 5: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

Page 6: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

Page 7: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

Page 8: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Branching

Page 9: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

Page 10: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes

Page 11: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

Page 12: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

Page 13: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

Page 14: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

fix bug

Page 15: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

fix bug

← master

← feature

Page 16: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

fix bug

← master

← feature

← HEAD

Page 17: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

fix bug

← master

← feature← HEAD

Page 18: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

fix bug

Page 19: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

first commit

changes more changes

start newfeature

keep workingon new feature

fix bug merge

Page 20: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Branching

• git branch

• git checkout

• git merge

Page 21: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

Page 22: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

master

master

Page 23: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

master

git fetch

master

Page 24: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

master

master

git fetch

origin/master↑

Page 25: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

master

master

git fetch

git merge origin/master

origin/master↑

Page 26: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

master

master

git fetch

git merge origin/master

origin/master↑

Page 27: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Remotes

master

master

git pull

origin/master↑

Page 28: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Forks

Page 29: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Pull Requests

Page 30: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

HTML

Page 31: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Links

• link to local page

• link to external page

• link to same page

Page 32: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

HTML4 OrganizaIon

• <div class="header">

• <div class="nav">

• <div class="section">

• <div class="footer">

• ...

Page 33: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

HTML5 OrganizaIon

• <header>

• <nav>

• <section>

• <footer>

• ...

Page 34: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

New HTML5 Elements

• <audio>

• <video>

• <datalist>

• ...

Page 35: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

CSS

Page 36: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

CSS Selectors

Page 37: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

CSS Selectors

a, b MulIple Element Selectora b Descendant Selectora > b Child Selectora + b Adjacent Sibling Selector[a=b] AQribute Selectora:b Pseudoclass Selectora::b Pseudoelement Selector

Page 38: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Responsive Design

Page 39: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Responsive Design

• viewport

• Media Queries

• Flexbox

• Grids

Page 40: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Bootstrap

Page 41: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Sass

Page 42: Web Programming with Python and JavaScript · 2018. 7. 1. · with Python and JavaScript. Git. first commit. first commit changes. first commit changes more changes. first commit

Web Programming with Python and JavaScript