You B Tech
11.3K subscribers
384 photos
24 videos
91 files
350 links
Development, coding project, website making and more Join You B Tech (๐Ÿ‡ฎ๐Ÿ‡ณ)
Instagram: @You_b_tech
Any Help ๐Ÿ™‚
Personal Chat
๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡
@BKC729
@BKC729
Download Telegram
Download Free HTML, CSS, and JS Projects with Security Code: A Comprehensive Guide

Link: Link: https://rb.gy/aep3d
๐Ÿ‘2
Use ChatGPT for Android Without Login or Signup: A Step-by-Step Guide

Link: https://rb.gy/aep3d
๐Ÿ‘2
Securely Download Free HTML, CSS, and JS Coding Projects with Security Code

Link: https://rb.gy/aep3d
๐Ÿ‘1
How to Create an Android App Using Chat GPT: A Clear, Step-by-Step Guide

Link: https://rb.gy/aep3d
Create Android App Using ChatGPT

Link: https://rb.gy/aep3d
๐Ÿ‘3
๐Ÿ‘1๐Ÿ”ฅ1
Calculator App Make By ChatGPT

Watch Video:
https://youtu.be/SFxE32wuZHk

How to create:
1. Generate HTML Code For Calculator In ChatGPT
2. Gernated Code To Convert APK File
3. Now install APK File

Download Link:
https://www.mediafire.com/file/ko4zu06ucou1wbf/Calculator.apk/file

Don't Forget Subscribe ๐Ÿ‘
๐Ÿ‘2
How to Create *Game* Using ChatGPT | Step-by-Step Guide

Video Link : https://youtube.com/@You_B_Tech
**************
โ–บAbout:
"In this step-by-step game development tutorial, you'll learn how to harness the power of ChatGPT to create your own interactive game. We'll cover everything from designing gameplay to integrating ChatGPT's natural language processing capabilities. Whether you're a beginner or an experienced developer, this video will help you bring your game ideas to life!

๐Ÿš€ Subscribe to our channel for more game development tutorials!

๐ŸŽฎ Game Download Link:
https://t.me/You_B_Tech/106
**************
Social Media:-
โ–บTelegram Channel: https://t.me/You_B_Tech
โ–บSubscribe: https://youtube.com/@You_B_Tech
โ–บInstagram: https://instagram.com/you_b_tech
โ–บWedsite: https://youbtech.xyz
๐Ÿ‘1
๐ŸŽญ PAID PREMIUM COURSES LEAKED ๐Ÿ’ฃ

๐Ÿ“ฅ INCLUDING -
๐Ÿ”‹Amazon FBA
๐Ÿ”‹E-COMMERCE
๐Ÿ”‹Audio Books
๐Ÿ”‹Seo Courses
๐Ÿ”‹Dropshipping
๐Ÿ”‹Google Adword
๐Ÿ”‹Messenger Bot
๐Ÿ”‹Crypto Currency
๐Ÿ”‹Funnel Building
๐Ÿ”‹Email Marketing
๐Ÿ”‹Ebooksdvertising
๐Ÿ”‹Facebook MARKETING
๐Ÿ”‹Lifestyle Courses
๐Ÿ”‹Affiliate Marketing
๐Ÿ”‹Copy writing Skills
๐Ÿ”‹Instagram MARKETING
๐Ÿ”‹Social Media Marketing

๐Ÿชซ Size - 219.11 GB

๐Ÿ—ƒ๏ธ Link - https://mega.nz/folder/DtARzS5I#D5it7IBEfT9vSJktGAs3aw

๐ŸŽ Share Us For More - @you_b_tech
๐Ÿ‘4๐Ÿ˜1
Warking Calculator HTML Code ๐Ÿคฏ๐Ÿ‘€
๐Ÿ‘1
You B Tech
Warking Calculator HTML Code ๐Ÿคฏ๐Ÿ‘€
Code :-

<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}

#calculator {
width: 300px;
margin: 0 auto;
padding: 10px;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 10px;
}

input[type="text"], input[type="button"] {
width: 50px;
height: 50px;
font-size: 20px;
margin: 2px;
border: none;
border-radius: 5px;
}

input[type="text"] {
width: 190px;
font-size: 28px;
}

#result {
color: #333;
margin: 10px 0;
}

input[type="button"] {
background-color: #4CAF50;
color: white;
cursor: pointer;
transition: background-color 0.3s, transform 0.1s;
}

input[type="button"]:hover {
background-color: #45a049;
transform: scale(1.1);
}
</style>
</head>
<body>
<div id="calculator">
<input type="text" id="result" value="0" readonly>
<br>
<input type="button" value="1" onclick="addToResult(1)">
<input type="button" value="2" onclick="addToResult(2)">
<input type="button" value="3" onclick="addToResult(3)">
<input type="button" value="+" onclick="addToResult('+')">
<br>
<input type="button" value="4" onclick="addToResult(4)">
<input type="button" value="5" onclick="addToResult(5)">
<input type="button" value="6" onclick="addToResult(6)">
<input type="button" value="-" onclick="addToResult('-')">
<br>
<input type="button" value="7" onclick="addToResult(7)">
<input type="button" value="8" onclick="addToResult(8)">
<input type="button" value="9" onclick="addToResult(9)">
<input type="button" value="*" onclick="addToResult('*')">
<br>
<input type="button" value="C" onclick="clearResult()">
<input type="button" value="0" onclick="addToResult(0)">
<input type="button" value="=" onclick="calculateResult()">
<input type="button" value="/" onclick="addToResult('/')">
</div>

<script>
let result = document.getElementById("result");

function addToResult(value) {
result.value += value;
}

function clearResult() {
result.value = "0";
}

function calculateResult() {
try {
result.value = eval(result.value);
} catch (error) {
result.value = "Error";
}
}
</script>
</body>
</html>
๐Ÿ‘5
โค1๐Ÿ‘1
โœ“ Create app using cyhatGPT
โœ“ how to make app
โœ“ earn money with ChatGPT
โœ“ChatGPT Tips,Trick And Hacks
โœ“ How To Make Tools Make and Earn Money Using ChatGPT

Visit Channel: https://youtube.com/@You_B_Tech
โค1
๐Ÿ‘2