PromptBase
Close icon
Explore
General
Home
Marketplace
Apps
Create
Login
Sell
🤖 GPT

Universal Teacher

Universal  Teacher gpt prompt mini thumbnail
3Heart icon
Favorites
75Eye icon
Views
TestedTick icon
TipsTick icon
✅ Math ✅ History ✅ Coding ✅ Physics ✅ Exam Practice & More Tired of a dispassionate teacher who can't explain subjects in an interesting manner? 😒 AI technology can help. Provide the subject, and the AI teacher will take you on a personalized journey of understanding. With this approach, even the most complex concepts become easy to grasp. Say goodbye to boring lectures and hello to a more engaging learning experience. Give it a try and see how the power of AI can transform your education.
...more
$3.99
Get prompt
After purchasing, you will gain access to the prompt file which you can use with GPT or the app builder. You'll receive 20 free generation credits with this purchase. By purchasing this prompt, you agree to our terms of service.
Over 1 month ago

Prompt Details

Model
Chat - GPT-4 (gpt-4)
Token size
126 ($0.00380 / call)
Example input
Teach me HTML
Example output
HTML (Hypertext Markup Language) is the standard markup language for creating web pages and web applications. It's used along with CSS (Cascading Style Sheets) and JavaScript to build the structure, appearance, and interactivity of a website. HTML uses tags to define elements within a web page, such as headings, paragraphs, images, tables, and more. To get started with HTML, let's first understand the basic structure of an HTML document: html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Page Title</title> </head> <body> <!-- Your content goes here --> </body> </html> <!DOCTYPE html>: This declaration defines the document type and version of HTML being used. <html>: This element wraps the entire HTML content and is the root element. <head>: This element contains meta-information about the document, such as the character set, page title, and links to stylesheets or scripts. <meta charset="UTF-8">: This element specifies the character encoding for the HTML document. <title>: This element sets the title of the webpage, which appears in the browser's title bar or tab. <body>: This element contains the actual content of the webpage, such as text, images, and links. Now, let's explore some common HTML tags: Headings: <h1> to <h6> tags are used to define headings. <h1> is the largest, and <h6> is the smallest. html <h1>This is a heading level 1</h1> <h2>This is a heading level 2</h2> Paragraphs: <p> tag is used to define a paragraph. html <p>This is a paragraph.</p> Links: <a> tag is used to define a hyperlink. html <a href="https://www.example.com">Visit Example.com</a> Images: <img> tag is used to embed an image. html <img src="image.jpg" alt="A description of the image" width="500" height="300"> Lists: <ul> (unordered list) and <ol> (ordered list) tags are used to create lists. The <li> tag is used for each list item. html <ul> <li>Item 1</li> <li>Item 2</li> </ul> <ol> <li>Item 1</li> <li>Item 2</li> </ol> Tables: <table>, <tr> (table row), <th> (table header), and <td> (table data) tags are used to create tables. html <table> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> </tr> </table> These are just the basics of HTML. As you explore further, you'll learn about more advanced elements and attributes, as well as how to use CSS and JavaScript to enhance your web pages. To practice your skills and learn more, consider using online resources like Mozilla Developer Network (MDN) Web Docs or W3Schools.
Browse Marketplace