What is web development and what is web design?

In modern web development you are presented with front-end code, commonly know as mark-up and also back-end code. Whereby the mark-up is building blocks that already exist. You are building on a basic template. The template consists of three important factors.

These are HTML, CSS, and JavaScript.

    Working AngularJS example

My Shopping List

  • {{x}}×

{{errortext}}






and the code to make it!


< div ng-app="myShoppingList" ng-cloak ng-controller="myCtrl" class="w3-card-2 w3-margin" style="max-width:400px;"> < header class="w3-container w3-light-grey w3-padding-16"> < ul class="w3-ul"> < li ng-repeat="x in products" class="w3-padding-16">{{x}}× < /ul> < div class="w3-container w3-light-grey w3-padding-16"> < div class="w3-row w3-margin-top"> < div class="w3-col s10"> < input placeholder="Add shopping items here" ng-model="addMe" class="w3-input w3-border w3-padding"> < /div> < div class="w3-col s2"> < button ng-click="addItem()" class="w3-btn w3-padding w3-green">Add < /div> < /div> < p class="w3-padding-left w3-text-red">{{errortext}}

< /div>