#!/bin/bash
num1=7
num2=6
num3=2
max=$num1
if [ $num2 -gt $max ]; then
max=$num2
fi
if [ $num3 -gt $max ]; then
max=$num3
fi
echo "The biggest number among $num1, $num2, and $num3 is $max"
To embed this project on your website, copy the following code and paste it into your website's HTML: