官术网_书友最值得收藏!

Understanding web applications

Web applications came from the mix of an application and a browser, of course! Basically, a web application is a client application that runs on a web browser. Thus most of the processes are done on the client machine and the server is just responsible for the data processing.

This is interesting, since you can always deliver to the client the most updated version of the application, while the client does not need to upgrade the software. This leads to fast-paced and continuous development of the app.

Creating the code structure

Just as we always say when starting a new example, let's use the HTML boilerplate that we always use, keeping the same folder structure and so on:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Web App</title>

    <link rel="stylesheet" href="css/bootstrap.css">
    <link rel="stylesheet" href="css/base.css">

    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js">
</script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js">
</script>
    <![endif]-->
  </head>
  <body>
    <script src="js/jquery-1.11.3.js"></script>
    <script src="js/bootstrap.js"></script>
    <script src="js/main.js"></script>
  </body>
</html>
主站蜘蛛池模板: 广德县| 鸡东县| 大埔区| 凤山县| 镶黄旗| 竹溪县| 南投市| 林甸县| 德州市| 旺苍县| 台中县| 伊春市| 遂宁市| 尖扎县| 蒲城县| 偏关县| 嘉禾县| 玛沁县| 阿勒泰市| 南江县| 易门县| 昭苏县| 科技| 麻阳| 财经| 壶关县| 库伦旗| 康保县| 石景山区| 昌都县| 米脂县| 陆川县| 诸暨市| 顺义区| 宾川县| 邛崃市| 广德县| 紫阳县| 大埔县| 安泽县| 鄂州市|