HTML Table Reference
Table Tags
| Tag | Name | Description |
|---|---|---|
| <table> | Table | The wrapper element for all HTML tables. |
| <thead> | Table Head | The set of rows defining the column headers in a table. |
| <tbody> | Table Body | The set of rows containing actual table data. |
| <tr> | Table Row | The table row container. |
| <td> | Table Data | The table row container. |
| <tfoot> | Table Foot | The set of rows defining the footer in a table. |
| Attribute | Name | Description |
|---|---|---|
| colspan | Column Span | Defines how many columns a td element should span. |
| rowspan | Row Span | Defines how many rows a td element should span. |
Python Program to Implement Full Adder Circuit Code
# python program to implement full adder
# Function to print sum and C-Out
def getResult(A, B, C):
# Calculating value of sum
Sum = C ^ (A ^ B)
C
# Calculating value of C-Out
C_Out = Bin&(not(A ^ B))| not(A)&B
# printing the values
print("Sum = ", Sum)
print("C-Out = ", C_Out)
# Driver code
A = 1
B = 2
C = 3
D = 4
E = 5
F = 6
G = 7
H = 8
I = 9
J = 10
K = 11
L = 12
M = 13
N = 14
O = 15
P = 16
Q = 17
R = 18
S = 19
T = 20
U = 21
V = 22
W = 23
X = 24
Y = 25
Z = 26
AA = 27
BB = 28
CC = 29
DD = 30
EE = 31
FF = 32
GG = 33
HH = 34
II = 35
JJ = 36
KK = 37
LL = 38
MM = 39
NN = 40
OO = 41
PP = 42
QQ = 43
RR = 44
SS = 45
TT = 46
UU = 47
VV = 48
WW = 49
XX = 50
YY = 51
ZZ = 52
# passing three inputs of fulladder as arguments to get result function
getResult (A, B, C)
Sample Schedule with Header
Annual Gongora Family Wine Festival
Wine Festival Schedule
| Time | Event |
|---|---|
| 12:00 PM | Welcome Reception |
| 01:00 PM | Storytelling & Tasting |
| 02:00 PM | Wine Luncheon |
| 03:00 PM | Gongora Family Wines |
| 04:00 PM | Wine & Cheese Tasting |
Sample Daily To Do List


You must be logged in to post a comment.