Skip to main content

Posts

Showing posts with the label Bootstrap

Building Responsive UI with Twitter Bootstrap and MVC4

ASP.NET  MVC The Model-View-Controller (MVC) design pattern is an architectural design pattern for any standard development that separates the components of an application. This allows applications to handle very flexible and extensible and easy to handle. The MVC model defines web applications with 3 logic layers: i.e. the business layer (Model logic), the display layer (View logic), and the input control (Controller logic). Check more details and you can also see a working MVC sample . Twitter Bootstrap The Twitter Bootstrap package consists of predefined CSS styles, Components, and jQuery plugins. It is licensed under Apache 2.0 and is free for commercial use. Unlike most front-end frameworks, Bootstrap is interesting because, in addition to it being a full-featured CSS framework, it adds JavaScript plugins (jQuery plugins are in the bootstrap.js file), typography, HTML scaffolding, and components. Combined with the Plugins and responsive CSS3-based media queries; Tw...