Showing posts with label bootstrap. Show all posts
Showing posts with label bootstrap. Show all posts

Saturday, April 11, 2020

பூட்ஸ்ராப் டைப்போகிராப்பி.


டிஃபால்ட் ஆக பூட்ஸ்ராப் ஃப்ஃபாண்ட் அளவு 14 px ஆகும் அதன் லைன் உயரம்-1.428 ஆகும்.
இது எல்லா பாடி எலிமெண்ட். பாராகிராப் எலிமெண்டுகளுக்கு அப்ளை செய்யப்படுகின்றது.
இந்த கட்டுரையில் html எலிமெண்ட்ஸ் பூட்ஸ்ட்ராப் உதவி கொண்டு சற்று வித்தியாசமாக எவ்வாறு டிசைன் செய்யப்படுகின்றது என்று பார்ப்போம்.
H1  TO H6
இந்த ஹெட்டிங்க் டேக்குகள் பூட்ஸ்ராப்பில் எவ்வாறு காட்சியகின்றன  என்று பார்ப்போம்.
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h1>h1 Bootstrap heading (36px)</h1>
  <h2>h2 Bootstrap heading (30px)</h2>
  <h3>h3 Bootstrap heading (24px)</h3>
  <h4>h4 Bootstrap heading (18px)</h4>
  <h5>h5 Bootstrap heading (14px)</h5>
  <h6>h6 Bootstrap heading (12px)</h6>
</div>

</body>
</html>
வெளியீடு

h1 Bootstrap heading (36px)

h2 Bootstrap heading (30px)

h3 Bootstrap heading (24px)

h4 Bootstrap heading (18px)

h5 Bootstrap heading (14px)
h6 Bootstrap heading (12px)
<small>
இந்த டேக் ஆனது எல்லா ஹெடிங்க் டேக்குகளிலும் அதன் செகண்டரி டெக்ஸ்ட் ஆக தோன்றுகின்றது.
சான்று நிரல்.
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h1>Lighter, Secondary Text</h1>
  <p>The small element is used to create a lighter, secondary text in any heading:</p>      
  <h1>h1 heading <small>secondary text</small></h1>
  <h2>h2 heading <small>secondary text</small></h2>
  <h3>h3 heading <small>secondary text</small></h3>
  <h4>h4 heading <small>secondary text</small></h4>
  <h5>h5 heading <small>secondary text</small></h5>
  <h6>h6 heading <small>secondary text</small></h6>
</div>

</body>
</html>
வெளியீடு:
Lighter, Secondary Text
The small element is used to create a lighter, secondary text in any heading:

h1 heading secondary text

h2 heading secondary text

h3 heading secondary text

h4 heading secondary text

h5 heading secondary text
h6 heading secondary text
<mark>
 இந்த டேக்கு ஆனது டெக்ஸ்டை ஹைலைட் செய்யப் பய்ன்படுகின்றது
சான்று நிரல்.
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h1>Highlight Text</h1>   
  <p>Use the mark element to <mark>highlight</mark> text.</p>
</div>

</body>
</html>
வெளியீடு:

Highlight Text

Use the mark element to highlight text.
<abbr>
பூட்ஸ்ராப்பில் abbr டேக்கு ஆனது பின் வரும் வழியில் பயன்படுகின்றது,
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h1>Abbreviations</h1>
  <p>The abbr element is used to mark up an abbreviation or acronym:</p>
  <p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
</div>

</body>
</html>
வெளியீடு:

Abbreviations

The abbr element is used to mark up an abbreviation or acronym:
The WHO was founded in 1948.
<blockquote>
பூட்ஸ்ராப் ஆனது html blockquote எலிமெண்டை கீழ் வரும் வகையில் காட்சிப்படுத்துகின்றது.
சான்று நிரல்.
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h1>Blockquotes</h1>
  <p>The blockquote element is used to present content from another source:</p>
  <blockquote>
    <p>For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.</p>
    <footer>From WWF's website</footer>
  </blockquote>
</div>

</body>
</html>
வெளியீடு:
Blockquotes
The blockquote element is used to present content from another source:
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
From WWF's website
இதை வலதுபுறம் காண்பிக்க .blockquote reverse கிளாஸ் பயன்படுகின்றது.
<div class="container">
  <h1>Blockquotes</h1>
  <p>To show the quote on the right use the class .blockquote-reverse:</p>
  <blockquote class="blockquote-reverse">
    <p>For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.</p>
    <footer>From WWF's website</footer>
  </blockquote>
</div>
வெளியீடு:
Blockquotes
To show the quote on the right use the class .blockquote-reverse:
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
From WWF's website
<dl>
பூட்ஸ்ராப் ஆனது dl எலிமெண்டை கீழ் வருமாறு காட்சிப்படுத்துகின்றது.
சான்று நிரல்.
<div class="container">
  <h1>Description Lists</h1>   
  <p>The dl element indicates a description list:</p>
  <dl>
    <dt>Coffee</dt>
    <dd>- black hot drink</dd>
    <dt>Milk</dt>
    <dd>- white cold drink</dd>
  </dl>    
</div>
வெளியீடு:
Description Lists
The dl element indicates a description list:
Coffee
- black hot drink
Milk

- white cold drink



<code>
பூட்ஸ்ராப் ஆனது code எலிமெண்டை கீழ்வரும் வகையில் காட்சிப்படுத்துகின்றது.
சான்று நிரல்.
<div class="container">
  <h1>Code Snippets</h1>
  <p>Inline snippets of code should be embedded in the code element:</p>
  <p>The following HTML elements: <code>span</code>, <code>section</code>, and <code>div</code> defines a section in a document.</p>
</div>
வெளியீடு:

Code Snippets

Inline snippets of code should be embedded in the code element:
The following HTML elements: span, section, and div defines a section in a document.
<kbd>
பூட்ஸ்ட்ராப் ஆனது கீழ்வரும் வகையில் kbd  எலிமெண்டை காட்சிப் படுத்துகின்றது.
சான்று நிரல்.
<div class="container">
  <h1>Keyboard Inputs</h1>
  <p>To indicate input that is typically entered via the keyboard, use the kbd element:</p>
  <p>Use <kbd>ctrl + p</kbd> to open the Print dialog box.</p>
</div>
வெளியீடு:

Keyboard Inputs

To indicate input that is typically entered via the keyboard, use the kbd element:
Use ctrl + p to open the Print dialog box.
<pre>
இந்த டேக்கை  பூட்ஸ்ட்ராப் எவ்வாறு பயன்படுத்துகின்றது என்று பார்போம்.
<div class="container">
<h1>Multiple Code Lines</h1>
<p>For multiple lines of code, use the pre element:</p>
<pre>
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both      spaces and
line breaks.
</pre>
</div>

வெளியீடு:
Multiple Code Lines
For multiple lines of code, use the pre element:
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both      spaces and
line breaks.

Contextual color and backgrounds.
பூட்ஸ்ராப்பில் டெக்ஸ்டை பின் வரும் கிளாஸ்களை பயன்படுத்தி வித்தியாசமான நிறங்களில் தோற்றப்படுத்தலாம்.
அதற்கு பயன்படும் கிளாஸ்கள்.
:.text-muted, .text-primary, .text-success, .text-info, .text-warning, மற்றும் .text-danger:
சான்று நிரல்.
<div class="container">
  <h2>Contextual Colors</h2>
  <p>Use the contextual classes to provide "meaning through colors":</p>
  <p class="text-muted">This text is muted.</p>
  <p class="text-primary">This text is important.</p>
  <p class="text-success">This text indicates success.</p>
  <p class="text-info">This text represents some information.</p>
  <p class="text-warning">This text represents a warning.</p>
  <p class="text-danger">This text represents danger.</p>
</div>
வெளியீடு:

Contextual Colors

Use the contextual classes to provide "meaning through colors":
This text is muted.
This text is important.
This text indicates success.
This text represents some information.
This text represents a warning.
This text represents danger.
நன்றி.
முத்து கார்த்திகேயன்,மதுரை

ads Udanz

Friday, February 14, 2020

பூட்ஸ்ட்ரால் கன்டைனர் மற்றும் ஜம்போட்ரான்.



பூட்ஸ்ட்ராப் ஆனது அதன் எலெமெண்டுகளை கண்டைன் செய்ய ஒரு கண்டைனெர் தேவைப்படுகின்றது.கண்டைனர்ஸ் ஆனது ரோ எலெமெண்டுகளை கொண்டுள்ளது ரோ எலெமெண்ட் ஆனது காலம்ன்களை கொண்டுள்ளது.
Container கிளாஸ் ஆனது ஒரு பாக்ஸில் நமக்கு கண்டெண்டை உருவாக்க பயன்படுகின்றது.
பூட்ஸ்ட்ராப்பிள் இரண்டு கண்டைனர் கிளாஸ்கள் உள்ளன.
1.    container
2.    container-fluid
கண்டைனர்  பேசிக் லே அவுட்.
<html>  
 <body>  
  <div class="container">  
   <div class="row">  
     <div class="col-md-xx"></div>  
       ...  
   </div>  
   <div class="row">  
     <div class="col-md-xx"></div>  
       ...  
   </div>  
  </div>  
 </body>  
</html>  

Bootstrap container உதாரணம்

<!DOCTYPE html>  
<html lang="en">  
  <head>  
     <title>Job</title>  
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>  
  </head>  
  <body>  
  
<div class="container">    
  <h1>Container</h1>    
  <p>container content</p>  
</div>    
    
<div class="container-fluid">    
  <h1>Container-fluid</h1>    
  <p>container-fluid content</p>  
</div>   
  
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>  
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>  
  </body>  
</html>  

Bootstrap Jumbotron

பூட்ஸ்ட்ராப் ஜம்போட்ரான் ஆனது ஒரு பெரிய பாக்ஸில் கவனத்தை கவரும் வகையில் கண்டண்ட் அல்லது தகவல்களை கொண்டு வர உதவுகின்றது.

இது ஒரு சாம்பல் வண்ணத்தில் ரவுண்டட் கார்னர்கள் கொண்ட பாக்ஸ் ஆக தோற்றமளிக்கின்றது. இதனால் இதன் உள்ளே உள்ள டெக்ஸ்டின் ஃபாண்ட் அளவை மாற்றியமத்துக் கொள்ளலாம்.

உங்களால் ஜம்போட்ரானின் உட் புறம் எந்த HTML அல்லது பூட்ஸ்ட்ராப் கண்டண்டையும் கொண்டு வரலாம்.

Jumbotron கிளாஸ் ஆனது டிவ் எலிமெண்டுக்கு ஆட்ரிபியூட் ஆக குறிப்பிடப்படுகின்றது.

கண்டைனரின் உட்புறம் ஜம்போட்ரான் அமைக்கப்படும் பொழுது அது அந்த ஸ்கிரீன் முனைகளை தாண்டி செல்லாது.

சான்று நிரல்

<!DOCTYPE html>  
<html lang="en">  
<head>  
  <title>Bootstrap Example</title>  
  <meta charset="utf-8">  
  <meta name="viewport" content="width=device-width, initial-scale=1">  
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">  
</head>  
<body>  
  
<div class="container">  
  <div class="jumbotron">  
    <h1>This is Jumbotron inside container!</h1>        
    <p>Jumbotron specifies a big box for getting extra attention to some special content or information.</p>  
  </div>  
  <p>This is some text.</p>        
  <p>This is another text.</p>        
</div>  
  
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>  
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>  
</body>  
</html>  

Jumbotron Outside Container.

ஜம்போட்ரான் ஆனது கண்டைனரின் வெளிப்புறம் குறிப்பிடப்படும் பொழுது அதன் ஸ்கிரீன் முனைகளை எக்ஸ்டெண்ட் செய்கின்றது.
Example:
<!DOCTYPE html>  
<html lang="en">  
<head>  
  <title>Bootstrap Example</title>  
  <meta charset="utf-8">  
  <meta name="viewport" content="width=device-width, initial-scale=1">  
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">  
</head>  
<body>  
  
<div class="jumbotron">  
  <h1>This is Jumbotron outside container!</h1>        
  <p>Jumbotron specifies a big box for getting extra attention to some special content or information.</p>  
</div>  
  
<div class="container">  
  <p>This is some text.</p>        
  <p>This is another text.</p>        
</div>  
  
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>  
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>  
</body>  
</html>  

Full-width Jumbotron

ஜம்போட்ரானர்களை ரவுண்டட் கார்னர் அற்று அமைக்க jumbo-fluid கிளாஸ் பயன்படுகின்றது. இது container அல்லது container-fluid கிளாஸ்களை உட்புறம் கொண்டுள்ளது

சான்று நிரல்

<!DOCTYPE html>  
<html lang="en">  
<head>  
  <title>Bootstrap Example</title>  
  <meta charset="utf-8">  
  <meta name="viewport" content="width=device-width, initial-scale=1">  
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">  
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>  
  <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.6/umd/popper.min.js"></script>  
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>  
</head>  
<body>  
  
<div class="jumbotron jumbotron-fluid">  
  <div class="container">  
    <h1>Full-width Jumbotron</h1>          
  <p>Jumbotron specifies a big box for getting extra attention to some special content or information.</p>  
</div>  
  
<div class="container">  
  <p>This is some text.</p>        
  <p>This is another text.</p>        
</div>  
  
</body>  
</html>  
நன்றி
முத்து கார்த்திகேயன்,மதுரை.
contact 91 96293 29142

ads Udanz