Tuesday, September 25, 2018
Thursday, June 28, 2018
List of Some Best Website to learn C-Programming
List of some Best website to learn C Programming
- https://www.cprogramming.com/tutorial/c-tutorial.html
- http://www.tutorialspoint.com/cprogramming/index.htm
- https://computer.howstuffworks.com/c.htm
- https://www.codingunit.com/category/c-tutorials
- http://www.learn-c.org/
Video Tutorial for C programming
- https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAKIXv8Yr6nhGJ9Vlcjyymq
- https://www.youtube.com/playlist?list=PLgH5QX0i9K3pCMBZcul1fta6UivHDbXvz (Bangla)
- https://www.youtube.com/playlist?list=PLPkEK3TrAJ1M4n273I67kZvz13gsjXPkr (Bangla)
- https://www.youtube.com/playlist?list=PLfVsf4Bjg79CZ5kHTiQHcm-l2q8j06ofd
- https://www.youtube.com/playlist?list=PLVlQHNRLflP8IGz6OXwlV_lgHgc72aXlh
- https://www.youtube.com/playlist?list=PLLioQ130_xjVgW5MVfLS1s7zfLFAbGIVs (Hindi)
- https://www.youtube.com/playlist?list=PLiOa6ike4WAHH3HyPUu6pUG-r0LApvW-l (Hindi/Urdu)
Tag: C-Prpgramming,Programming.
Wednesday, March 21, 2018
Saturday, March 10, 2018
Table attribute - HTML
Table attribute - HTML
Attribute list needs to create a table are given below :
1. width
2. height
3. border
4. rowspan
5. collspan
we saw the border effect in previous Part.
Example :
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Table</title>
</head>
<body>
<table border="1" width="300" height="250">
<tr>
<td>Row 1 Col 1</td>
<td>Row 1 Col 2</td>
<td>Row 1 Col 3</td>
</tr>
<tr>
<td>Row 2 col 1</td>
<td>Row 2 col 2</td>
<td>Row 2 col 3</td>
</tr>
<tr>
<td>Row 3 col 1</td>
<td>Row 3 col 2</td>
<td>Row 3 col 3</td>
</tr>
</table>
</body>
</html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Table</title>
</head>
<body>
<table border="1" width="300" height="250">
<tr>
<td>Row 1 Col 1</td>
<td>Row 1 Col 2</td>
<td>Row 1 Col 3</td>
</tr>
<tr>
<td>Row 2 col 1</td>
<td>Row 2 col 2</td>
<td>Row 2 col 3</td>
</tr>
<tr>
<td>Row 3 col 1</td>
<td>Row 3 col 2</td>
<td>Row 3 col 3</td>
</tr>
</table>
</body>
</html>
Output:
<caption> tag used for making a heading of a table and <caption> write next to the <table> (opening tag) tag like:
<table>
<caption>Heading</caption>
<tr>
<td>Row 1 Col 1</td>
</tr>
<tr>
<td>Row 1 Col 1</td>
</tr>
</table>
If we use the <caption> tag in the code is given above, then the output is :
Tag: Table attribute - HTML, width, height, border,attribute ,caption , HTML.
Friday, March 9, 2018
Table Create In html
Table Create In html
Tags are given below those are use to create table in html.
Tag
|
Description
|
<table> |
Use to Defines a table
|
<th> |
Use to Defines a header cell in a
table
|
<tr> |
Use to Defines a row in a table
|
<td> |
Use to Defines a cell in a table
|
<caption> |
Use to Defines a table caption
|
<thead> |
Use to Groups the header content
in a table
|
<tbody> |
Use to Groups the body content in
a table
|
<tfoot> |
Use to Groups the footer content
in a table
|
Example:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Table</title>
</head>
<body>
<table>
<tr>
<td>Row 1 Col 1</td>
<td>Row 1 Col 2</td>
<td>Row 1 Col 3</td>
</tr>
<tr>
<td>Row 2 col 1</td>
<td>Row 2 col 2</td>
<td>Row 2 col 3</td>
</tr>
<tr>
<td>Row 3 col 1</td>
<td>Row 3 col 2</td>
<td>Row 3 col 3</td>
</tr>
</table>
</body>
</html>
Output:
but it's little bit difficult to understood because there is no border between row and column but we use border attribute,we see a change .Use border attribute in table tag .Like example given below
<table border="1">
Output: |
Note: for create a table first define <table> tag the use <tr> tag to make row in the table.Then use <td> in <tr> tag to divide row in the column. |
|||||||||||||||||||||||||||||||
Tag: Table Create In html,<table> tag, <tr> tag, <td> tag. |
|||||||||||||||||||||||||||||||
Thursday, March 8, 2018
Text Formatting in HTML
Text Formatting in HTML
Today we learn some tag those are use to formatting text.Formatting
elements were designed to display special types of text:
1.<b> - Bold
text
example: output:
2.<strong> -
Important text
example: output:
<b> & <strong> are like same.
3.<i> - Italic
text
example: output:
4.<em> -
Emphasized text
5.<mark> -
Marked text
6.<small> -
Small text
7.<del> -
Deleted text
8.<ins> -
Inserted text
9.<sub> -
Subscript text
10.<sup> -
Superscript text
Tag: Text Formatting in HTML
Wednesday, March 7, 2018
Audio and Video Tag in html Part-2
Audio and Video Tag with attribute
Audio And Video Tag attribute list given below:
1.autoplay
2.src
3.controls
4.loop
5.muted
6.poster(only for video tag)
In Part-1, we learn the use of controls and src attribute.Today do try others
<audio controls autoplay>
<source src="audio.mp3"></source>
</audio>
<source src="audio.mp3"></source>
</audio>
if we use autoplay in audio tag,the audio file automatic play after page loading .
<audio controls autoplay loop>
<source src="audio.mp3"></source>
</audio>
<source src="audio.mp3"></source>
</audio>
if we use loop attribute in audio tag,the audio file automatic repeat again when it finish.
<audio controls autoplay loop muted>
<source src="audio.mp3"></source>
</audio>
<source src="audio.mp3"></source>
</audio>
muted is use for no sound.
autoplay, loop, and muted are same as in video tag.
only poster is different. it's use to make a cover or poster of a video like we see in youtube videos.
<video controls poster="html5.gif">
<source src="movie.mp4" type="video/mp4">
</video>
Tag: audio and video tags with attribute, html
Thursday, March 1, 2018
youtube channel of this blog
YouTube Channel
YouTube channel link below :
Future you will see video tutorial on this channel
Channel Name : Online School
Tag: Online School,YouTube Channel,
Friday, February 23, 2018
Audio and video tag in html
Audio and video tag in html
Audio :
To adding a audio or video file we need to add audio or video tag in html file.
Audio Tag syntax:
<source src=""></source><audio>
</audio>
in html5 we need to write another tag in audio tag which is called source tag.In source tag we use src attribute to add audio file.
code example:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<audio>
<source src=""></source>
</audio>
</body>
</html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<audio>
<source src=""></source>
</audio>
</body>
</html>
but when we run it on browser we see blank window for.Because, we doesn't call audio control player yet. For that we need to add controls attribute in audio tag.
like,
<source src=""></source><audio controls>
</audio>
code example:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<audio controls>
<source src="audio.mp3"></source>
</audio>
</body>
</html>
Video tag:
video tag are same just replace audio tag by video tag
syntax:
<source src="video.mp4"></source><video controls>
</video>
Tag: Audio and video tag in HTML,HTML,web design
Monday, February 19, 2018
Thursday, February 15, 2018
Wednesday, February 14, 2018
HTML Table Exceise
HTML Table
Try those table
Code :
<!DOCTYPE html>
<html>
<head>
<title>my first page</title>
</head>
<body>
<table border="1" width="700" height="600">
<tr>
<td colspan="6"></td>
<td ></td>
<td colspan="2" rowspan="5" width="75"></td>
</tr>
<tr>
<td colspan="2" width="75"></td>
<td rowspan="4" width="50"></td>
<td colspan="3"></td>
<td width="35"></td>
</tr>
<tr>
<td colspan="2" rowspan="4"></td>
<td colspan="3" rowspan="3" width="150"></td>
<td rowspan="3"></td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td colspan="5"></td>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2"></td>
<td></td>
<td colspan="6"></td>
</tr>
</table>
</body>
</html>
Tag: html css, html & css, Web Design ,html table
Subscribe to:
Posts (Atom)
Freelancing Website
Top online Earning or Freelancing Website 1. https://creativemarket.com/ Graphics and Photography Related Site ...
-
Try this table in HTML coding Tag: html css, html & css, Web Design ,html table
-
Key Board Layout For bangla typing Tag: Key Board Layout For bangla typing ,Microsoft word, Bnagla type, Bijoy keyboard layout