HTML & CSS PROGRAMMING
4.22K subscribers
308 photos
18 videos
79 files
108 links
https://t.me/addlist/oJIs6WVKrqBmMWQ1

Hello! I am @Myhurthearts and welcome to the Coding channel! Here we can learn all things related to coding and improve our skills , just let me know!
Download Telegram
Free Study Resources join more https://t.me/addlist/c3QWwWR-Iw4xMDNl

Subscribe Our channel for coding, designing, hacking and computer related
👉 https://youtube.com/@CODEBOMBB
JAVASCRIPT PROFESSIONAL cheat sheet

🔰 Join for more course https://t.me/addlist/c3QWwWR-Iw4xMDNl

Subscribe our channel for coding, design and hacking
👉https://youtube.com/@CODEBOMBB
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
3
<html>
<head>
<title>Page Title</title><style>table{ height:100px;
width:100px;
border:4px groove blue;
}


.image { height:6em;
width:6em;
border:4px dotted blue;
border-radius:50%;

}

td{
border:1px solid magenta;
text-align:center;
background-color:red;
}

th{
border:3px solid green;
}</style>
</head>
<body><br>
<table>
<tr>
<th>सब्जी बनाने</th>
<th>फल</th>
<th>सब्जी बनाने</th>
</tr>
<tr>
<td><img class="image" src=" ">टमाटर</td>
<td><img class="image"src=" ">सेब</td>
<td><img class="image"src=" ">बैगन</td>
</tr>
</table>
</body>
</html>
1👍1🔥1