- Bootstrap 4:Responsive Web Design
- Silvio Moreto Matt Lambert Benjamin Jakobus Jason Marah
- 123字
- 2021-07-09 18:54:47
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>
推薦閱讀
- 大學計算機應用基礎實踐教程
- Offer來了:Java面試核心知識點精講(原理篇)
- iOS開發實戰:從零基礎到App Store上架
- Django:Web Development with Python
- OpenNI Cookbook
- 深度學習:算法入門與Keras編程實踐
- Java性能權威指南(第2版)
- Tableau 10 Bootcamp
- Java Fundamentals
- Python自然語言理解:自然語言理解系統開發與應用實戰
- Learning Unreal Engine Game Development
- 你真的會寫代碼嗎
- C# 7.1 and .NET Core 2.0:Modern Cross-Platform Development(Third Edition)
- Python 快速入門(第3版)
- Parallel Programming with Python