Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Languages of the web, Demystified.

Languages of the web, Demystified.

Introduction and basic overview of how different languages are used to build a modern web application.

adam bouchard

March 25, 2017
Tweet

More Decks by adam bouchard

Other Decks in Programming

Transcript

  1. Styles content <head> <style> body { background-color:blue; color: white; Padding:

    50px; } </style> </head HTML JavaScript CSS Elixir PostgreSQL
  2. What it looks like in your browser. Heading title A

    paragraph HTML JavaScript CSS Elixir PostgreSQL
  3. Tells it how to behave. <p id="demo" onclick="myFunction()"> Click me

    to change my text color. </p> <script> function myFunction() { document.getElementById("demo").style.color = "red"; } </script> HTML JavaScript CSS Elixir PostgreSQL
  4. HTML JavaScript CSS Elixir PostgreSQL What it looks like in

    your browser. (javascript is within the html to the left)
  5. Sequence of training... Stage 1: Awareness Basic concepts. Learn purpose

    and syntax Stage 2: Learning Apply concepts following examples Stage 3: Understand Build your own web application.