Projects

HTML Table Reference

Table Tags

TagNameDescription
<table>TableThe wrapper element for all HTML tables.
<thead>Table HeadThe set of rows defining the column headers in a table.
<tbody>Table BodyThe set of rows containing actual table data.
<tr>Table RowThe table row container.
<td>Table DataThe table row container.
<tfoot>Table FootThe set of rows defining the footer in a table.
AttributeNameDescription
colspanColumn SpanDefines how many columns a td element should span.
rowspanRow SpanDefines how many rows a td element should span.
Sample table with HTML Tags and Attributes and their meaning

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

TimeEvent
12:00 PMWelcome Reception
01:00 PMStorytelling & Tasting
02:00 PMWine Luncheon
03:00 PMGongora Family Wines
04:00 PMWine & Cheese Tasting

Sample Daily To Do List

Sample Daily To-do List

GitHub Project URLs

Alpaca Image Generator

Call Center Call Tracker

Medicine Dose Tracker

Mini-Player

CodePen Projects