Web
Web usually refers to:
- World Wide Web or the Web, an Internet-based hypertext system
- Spider web, a silken structure created by the animal
Web or WEB may also refer to:
Arts and entertainment
Films
- Web (2013 film), a documentary
- Webs (film), a 2003 science-fiction movie
- The Web (film), a 1947 film noir thriller
web 2.0
Music
- Web Entertainment, a record label
- Web (album), a 1995 album by Bill Laswell and Terre Thaemlitz
- "The Web", a song from the album Script for a Jester's Tear by Marillion
Publications
- Web (comics), a comic book character
- Web (novel) by John Wyndham, posthumously published novel set on an island populated by spiders
- World English Bible (WEB), a 2000 public domain translation of the Bible
- The Web (series), a series of science fiction stories
Radio
- WEBS (AM), a radio station licensed to Calhoun, Georgia, United States
- West End Broadcast (WeB FM), a radio station in Newcastle, England, that was a forerunner of NE1fm
Television
- The Web (TV series), a mystery/suspense anthology series
- "Web", an episode of season 7 of Law & Order: Special Victims Unit
- "The Web", an episode of Blake's 7
- The Web, a dangerous region of space in the ReBoot universe
- The WeB, original name of The WB 100+ Station Group, a defunct TV programming service
Other uses in the arts
- West-East Bag, an international women artists network active from 1971 to 1973
Computing
- WEB, a literate programming system created by Donald Knuth
- GNOME Web, a Web browser for the GNOME desktop environment
- Web.com, a public company selling Web design, hosting and registration to small businesses
- Webs (web hosting), a freemium Web hosting and website building service
Engineering
- Web (manufacturing), continuous sheets of material passed over rollers
- Web, a roll of paper in offset printing
- Web, the vertical element of an I-beam
- Web, the interior beams of a truss
Mathematics
- Web (differential geometry), a type of set allowing an intrinsic Riemannian-geometry characterisation of the additive separation of variables in the Hamilton–Jacobi equation
- Web, a linear system of divisors of dimension 3
web app for book store
<html ng-app="myApp"> <head> <title>BookStore</title> link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"> link rel="stylesheet" href="css/style.css"> </head> <body> <nav class="navbar navbar-default">
</nav>
<script src="/bower_components/jquery/dist/jquery.js"></script> <script src="/bower_components/angular/angular.js"></script> <script src="/bower_components/angular-route/angular-route.js"></script> <script src="/bower_components/bootstrap/dist/js/bootstrap.js"></script> <script src="/app.js"></script> <script src="/controllers/books.js"></script> <script src="/controllers/genres.js"></script> </body> </html> ///////////////// a href="#/books">Go Back</a>
Add Book
<form ng-submit="addBook()">
<label>Title</label> <input type="text" class="form-control" ng-model="book.title" placeholder="Title">
<label>Genre</label> <select ng-model="book.genre" class="form-control"> <option value="Suspense">Suspense</option> <option value="Drama">Drama</option> <option value="Romance">Romance</option> <option value="NonFiction">NonFiction</option> <option value="Other">Other</option> </select>
<label>Author</label> <input type="text" class="form-control" ng-model="book.author" placeholder="Author">
<label>Publisher</label> <input type="text" class="form-control" ng-model="book.publisher" placeholder="Publisher">
<label>Pages</label> <input type="text" class="form-control" ng-model="book.pages" placeholder="Pages">
<label>Description</label> <textarea class="form-control" ng-model="book.description" placeholder="Description"></textarea>
<label>Image URL</label> <input type="text" class="form-control" ng-model="book.image_url" placeholder="Image URL">
<label>Buy URL</label> <input type="text" class="form-control" ng-model="book.buy_url" placeholder="Buy URL">
<button type="submit" class="btn btn-default">Submit</button> </form>
//////////////// a href="#/books">Go Back</a>
<img src="Template:Book.image url">
- Genre: Template:Book.genre
- Author: Template:Book.author
- Publisher: Template:Book.publisher
- Pages: Template:Book.pages
<a target="_blank" href="Template:Book.buy url" class="btn btn-primary">Buy on Amazon</a>
a href="#/books/edit/Template:Book. id">Edit</a> | a href="#" ng-click="removeBook(book._id)">Delete</a>
///////////////
Latest Books
<a class="btn btn-primary" href="#/books/details/Template:Book. id">View Details</a>
<img class="thumbnail" src="Template:Book.image url">
//////////////////////// a href="#/books">Go Back</a>
Edit Book
<form ng-submit="updateBook()" ng-init="getBook()">
<label>Title</label> <input type="text" class="form-control" ng-model="book.title" placeholder="Title">
<label>Genre</label> <select ng-model="book.genre" class="form-control"> <option value="Suspense">Suspense</option> <option value="Drama">Drama</option> <option value="Romance">Romance</option> <option value="NonFiction">NonFiction</option> <option value="Other">Other</option> </select>
<label>Author</label> <input type="text" class="form-control" ng-model="book.author" placeholder="Author">
<label>Publisher</label> <input type="text" class="form-control" ng-model="book.publisher" placeholder="Publisher">
<label>Pages</label> <input type="text" class="form-control" ng-model="book.pages" placeholder="Pages">
<label>Description</label> <textarea class="form-control" ng-model="book.description" placeholder="Description"></textarea>
<label>Image URL</label> <input type="text" class="form-control" ng-model="book.image_url" placeholder="Image URL">
<label>Buy URL</label> <input type="text" class="form-control" ng-model="book.buy_url" placeholder="Buy URL">
<button type="submit" class="btn btn-default">Submit</button> </form>