<div class="container-fluid">
<h1>Hello World!</h1>
<div class="row">
<div class="col-sm-3" style="background-color:yellow;">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-9" style="background-color:pink;">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
--------------
<div class="container-fluid">
<h1>Hello World!</h1>
<div class="row">
<div class="col-sm-4" style="background-color:yellow;">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-8" style="background-color:pink;">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
--------------
Saturday, November 17, 2018
Contact Form
Popular Posts
-
JavaScript Date Input There are generally 3 types of JavaScript date input formats: TypeExample ISO Date "2015-03-25" (The Int...
-
The constants refer to fixed values that the program may not alter during its execution. These fixed values are also called literals. Const...
-
The SQL CREATE TABLE Statement The CREATE TABLE statement is used to create a new table in a database. CREATE TABLE table_name (...
-
We discussed that delegates are used to reference any methods that has the same signature as that of the delegate. In other words, you can ...
-
When you define a class, you define a blueprint for a data type. This does not actually define any data, but it does define what the class ...
-
PHP User Defined Functions Besides the built-in PHP functions, we can create our own functions. A function is a block of statements tha...
-
The SQL SELECT TOP Clause The SELECT TOP clause is used to specify the number of records to return. The SELECT TOP clause is useful on ...
-
Migration from HTML4 to HTML5 This chapter is entirely about how to migrate from HTML4 to HTML5 . This chapter demonstrates how to...
0 comments:
Post a Comment