forked from ChatGPT3/chatgpt3.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-notepad-app-using-chatgpt.html
99 lines (81 loc) · 3.38 KB
/
build-notepad-app-using-chatgpt.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HS1CLSVM1Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HS1CLSVM1Z');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Notepad App clone using ChaGPT</title>
<meta name="keywords"
content="chatgpt explained,chatgpt coding,chatgpt trading bot,chatgpt how to use,chatgpt examples,chatgpt api,chatgpt demo chatgpt 3,OpenAI ChatGPT Tutorial for Beginners,openai chatbot gpt," />
<meta name="description"
content="This tutorial gives a beginner's demo of how to access and use OpenAI ChatGPT. It's a Tutorial for chatGPT Beginners.">
<link type="text/css" rel="stylesheet" href="https://pythonread.github.io/style0.css" media="all" />
<style>
body{
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
}
p{
background-color: whitesmoke;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
}
a{
color: blue;
text-decoration: none;
}
h2{
background-color:lightskyblue;
}
</style>
</head>
<body>
<header>
<!-- cover image or sth. -->
</header>
<div class="m-scene" id="main">
<div class="nav-wrapper">
<div class="container">
<nav>
<div class="logo wave">
<a href="/" id="logo">
Python Tutorial
</a>
</div>
<div class="nav-toggle-icon" id="nav-toggle-icon" onclick="mobileMenu()">
<div class="material-hamburger">
<span>
</span>
<span>
</span>
<span>
</span>
</div>
</div>
</nav>
</div>
</div>
</div>
<br/>
<div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/mL8el25cSIY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<br/>
<div>
<button style="background-color:blueviolet;border-radius: 5px ; font-size:30px"><a href="https://drive.google.com/drive/folders/1IoTzbS5dar6fof3wiC0c8zyH4mGgBbK0?usp=share_link" target="_blank" style="color:white">Downlaod Code</a></button>
</div>
<div>
<p>In this video , we will build a Notepad App using ChatGPT in just 1 minute.This simple Notepad App is built using Python and Tkinter. It has some Basic Functionalities like,Write Text ,Save text file , open Text file and Clear all text from Text area.You can use pyinstaller to convert this .py file into .exe file so that anyone can use it on windows os.
</p>
</div>
</body>
</html>