Beginner

Adobe Photoshop is the King software for retouching, photographic processing and DTP creation, officially launched in 1990.
Edited by Adobe Inc., it is a must-have for all graphic arts creatives.
Screenshot (examples)
Let's start by familiarizing ourselves with the software... The more you progress, page after page, the more sophisticated the scripts will be. However, you must pass the cape of 30 to 40 pages per level, before moving on to the next step... FOLLOW THE STEPS AND IMMERSE YOURSELF!
Welcome screen
Document creation
Saving the document
C 0001 - Bonjour tout le monde !
Dîtes bonjour...
<html> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script> <body> <div ng-app=""> <h1>Bonjour tout le monde !</h1> </div> </body> </html>
C 0002 - Champ de formulaire
Interagir avec un champ de formulaire...
<html> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script> <body> <div ng-app=""> <p>Entrez un prénom dans le champ ci-dessus :</p> <p>Nom : <input type="text" ng-model="name" placeholder="Écrivez votre nom ici"></p> <h1>Bonjour {{name}}. Comment allez-vous ?</h1> </div> </body> </html>
C 0003 - Les chiffres
Un petit calcul...
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js">
</script>
<body>
<div ng-app="" ng-init="quantity=1;cost=10">
<p>Total en dollars : {{ quantity * cost }}
</p>
</div>
</body>
</html>
C 0004 - Liste de prénoms
Afficher une liste de prénoms...
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<ul>
<li ng-repeat="x in names">{{x}}</li>
</ul>
</div>
<script>var app=angular.module('myApp',[]);app.controller('myCtrl', function($scope) {$scope.names = ["John", "Paul", "Marcus", "Theo"];});
</script>
</body>
</html>
Info+
Creation
» Creation date: 1990
* Created by Thomas Knoll and John Knoll
* Published by Adobe
* Software
* Written in Pascal
* Multimedia
* Windows / Mac
* Shareware
* Created by Thomas Knoll and John Knoll
* Published by Adobe
* Software
* Written in Pascal
* Multimedia
* Windows / Mac
* Shareware
Official/Leader Websites
Tutorial Websites
Complementary Websites
Edition & Press Review
Tools & Levels
Softwares & Frameworks
Glossary
News
No item found!