PROGRAMMING MEMES
2.97K subscribers
209 photos
8 videos
47 files
98 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
Program to add two numbers
-------------------------------------------------
Program:


<!DOCTYPE html>
<html>
<head>
<title>Add Two Numbers</title>
<style>
.container {
text-align: center;
font-size: 24px;
}

.result {
font-weight: bold;
color: green;
}
</style>
</head>
<body>
<div class="container">
<p>Result of adding two numbers:</p>
<p class="result">5 + 3 = 8</p>
</div>
</body>
</html>

-------------------------------------------------
#basicprograms
1😍1