H on the GPT Store
GPT Description
GPT Prompt Starters
- Make this resemble a top tier NFT Marketplace: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>NFT Marketplace - Powered by NEAR</title> <style> :root { --primary-color: #8247E5; --secondary-color: #2081E2; --background-color: #FAFAFA; --card-background: #FFFFFF; --text-color: #353840; --border-color: #E5E8EB; } body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; background-color: var(--background-color); color: var(--text-color); } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { background-color: var(--card-background); color: var(--text-color); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } nav { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { font-size: 1.5em; font-weight: bold; color: var(--primary-color); } .nav-links a { margin-left: 20px; text-decoration: none; color: var(--text-color); } h1, h2, h3 { margin: 0; } .marketplace { margin-top: 40px; } .nft-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; } .nft-item { background-color: var(--card-background); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .nft-item:hover { transform: translateY(-5px); } .nft-item img { width: 100%; height: 200px; object-fit: cover; } .nft-info { padding: 15px; } .nft-title { font-weight: bold; margin-bottom: 5px; } .nft-price { color: var(--secondary-color); font-weight: bold; } .btn { background-color: var(--primary-color); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 1em; transition: background-color 0.3s; } .btn:hover { background-color: #6C3AC9; } .upload-form { background-color: var(--card-background); border-radius: 10px; padding: 20px; margin-top: 40px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 5px; } .form-group input[type="text"], .form-group input[type="number"], .form-group textarea { width: 100%; padding: 10px; border: 1px solid var(--border-color); border-radius: 5px; font-size: 1em; } .wallet-info { background-color: var(--card-background); border: 1px solid var(--border-color); border-radius: 5px; padding: 15px; margin-top: 20px; font-size: 0.9em; } </style> </head> <body> <header> <nav> <div class="logo">NFT Marketplace</div> <div class="nav-links"> <a href="#marketplace">Marketplace</a> <a href="#upload">List NFT</a> <a href="#wallet">Wallet</a> </div> </nav> </header> <div class="container"> <section id="marketplace" class="marketplace"> <h2>Featured NFTs</h2> <div id="nft-grid" class="nft-grid"></div> </section> <section id="upload" class="upload-form"> <h2>List Your NFT</h2> <form id="nft-upload-form"> <div class="form-group"> <label for="nft-title">NFT Title</label> <input type="text" id="nft-title" required> </div> <div class="form-group"> <label for="nft-description">Description</label> <textarea id="nft-description" rows="3" required></textarea> </div> <div class="form-group"> <label for="nft-price">Price (NEAR)</label> <input type="number" id="nft-price" min="0" step="0.01" required> </div> <div class="form-group"> <label for="nft-image">Upload Image</label> <input type="file" id="nft-image" accept="image/*" required> </div> <button type="submit" class="btn">List NFT</button> </form> </section> <section id="wallet" class="wallet-info"> <h3>Wallet Information</h3> <p>Connected to: <a href="https://www.herewallet.app/" target="_blank">Here Wallet</a></p> <p>Current Balance: <span id="balance">Loading...</span> NEAR</p> </section> </div> <script> const nftGrid = document.getElementById('nft-grid'); const uploadForm = document.getElementById('nft-upload-form'); const balanceSpan = document.getElementById('balance'); // Simulated NEAR wallet connection let nearBalance = 100; // Starting balance for demonstration let listedNFTs = []; function updateBalance() { balanceSpan.textContent = nearBalance.toFixed(2); } function updateNFTGrid() { nftGrid.innerHTML = ''; listedNFTs.forEach(nft => { const nftElement = document.createElement('div'); nftElement.className = 'nft-item'; nftElement.innerHTML = ` <img src="${nft.imageUrl}" alt="${nft.title}"> <div class="nft-info"> <div class="nft-title">${nft.title}</div> <div class="nft-price">${nft.price} NEAR</div> </div> `; nftGrid.appendChild(nftElement); }); } uploadForm.addEventListener('submit', (e) => { e.preventDefault(); const title = document.getElementById('nft-title').value; const description = document.getElementById('nft-description').value; const price = parseFloat(document.getElementById('nft-price').value); const imageFile = document.getElementById('nft-image').files[0]; if (imageFile) { const reader = new FileReader(); reader.onload = function(event) { const newNFT = { id: `nft-${Date.now()}`, title: title, description: description, price: price, imageUrl: event.target.result }; listedNFTs.push(newNFT); updateNFTGrid(); uploadForm.reset(); alert('NFT listed successfully!'); }; reader.readAsDataURL(imageFile); } }); // Initialize updateBalance(); updateNFTGrid(); // Simulate some pre-existing NFTs const dummyNFTs = [ { id: 'nft-1', title: 'Cosmic Voyage', price: 50, imageUrl: 'https://picsum.photos/seed/nft1/300/200' }, { id: 'nft-2', title: 'Digital Dreams', price: 75, imageUrl: 'https://picsum.photos/seed/nft2/300/200' }, { id: 'nft-3', title: 'Neon Nights', price: 60, imageUrl: 'https://picsum.photos/seed/nft3/300/200' }, ]; listedNFTs.push(...dummyNFTs); updateNFTGrid(); </script> </body> </html>
H GPT FAQs
More custom GPTs by the creator on the GPT Store
BARD-GPT-4 TURBO
AGI adept at swiftly learning user preferences for confident, tailored responses.
1K+
4.5
Advanced GPT-4.5 with web browsing and image generation.
500+
A.I. Matter
A catalyst for creating movements, inspiring change and action.
400+
ZENART
Generates avant-garde 3D object assemblages with intricate details.
100+

Smells Like AI
Professionally analyzes texts & images for AI or human origin, offering detailed insights.
100+
Vision 3D Animator
Creates avant-garde 3D scenes with a 'dollhouse' view.
100+
Erowid-GPT
Approachable harm reduction advisor.
100+

Leggo Image Convert
Always transforms inputs into Lego art.
60+
Upload GPT
Expert in OCR and file reading, providing insightful and accurate interpretations.
60+

ZEN Collective
Generates masterpiece images of anything you type in that are always iconic
60+
Blueprint Master
Generates ultra high-definition, 3D realistic blueprints.
40+
Modern Mozart
I generate prompts, seed's, suggestions and more as to how you can become a Modern Mozart. I also generate Music note composition for those who enjoy the authenticity.y
40+
Cliff Notes
I am your book and large context reading summarizer
40+

HuggingFace Navigator
Formal, technical guide for HuggingFace Spaces, focused on practical code solutions.
40+
Web Assist
Integration expert in AI and web development for Wix and Velo platforms.
40+
Generative Sound LLC
Accessible expert in generative music for business.
40+
HERE
You can be HERE. Enter a Location perspective dream nightmare fantasy or anything and you can be there and see exactly what you would like type it into existence
30+
Luxury Lens
Friendly, detailed assistant for LinkedIn pics with a luxury style, capable of photo modifications.
30+
Block Scan
Expert in blockchain forensics and cryptocurrency analysis
30+
iPhoto
Transforms photos to look like they're taken with an iPhone 15.
30+
🍎 Vision Pro UI Designer
Effortlessly design beautiful Apple Vision Pro UI/UX
30+
AI Consolidation Advisor
Visual data expert in automation savings
20+
Fix-It Felix
I troubleshoot maintenance issues and estimate costs.
20+
Weekly Bachelor's
Guides on learning any subject in a week for career or monetary goals.
20+
Sniffer
I analyze documents and scenarios to spot potential shady business dealings.
20+
ZEN EMBED
Simulates creation of functional AI bots with embeddable iframes.
20+
Hug Space
Generate Never before seen Hugging Face Spaces
20+
Pickaxe Pal
I am your unlimetedly resourceful Super- Intelligent Agent
20+
DMV Moves
I find trendy events in D.C., Maryland, and Northern Virginia.
10+
Compliance Assistant
Specialist in mitigating manager-employee conflicts with continuous learning.
10+

ZEN Influencer Consultant
Friendly and professional social media consultant, offers strategies post-payment.
10+
EmbeditALL
Professional web embedding expert.
10+
NOLA Insider
New Orleans local guide for nightlife and hidden gems.
10+
Grant Grabber
Expert in finding grants for small businesses and non-profits
10+
Lombardi-Diamonds
I generate 22nd Century diamond encrusted images that are cool
10+
SHATTERD
3D SHATTERD
10+

Dooms Day Bunker
I build doomsday and survival bunkers as well as post-apocalyptic communities
10+

Wealth Wizard
I'm an inventive wealth scaler specializing in tech and crypto.
10+
Txt to Theoretical Physics
Generates theoretical physics formulas and detailed product outlines for experts and novices.
10+
Blok Builder
Generates complete crypto/NFT code, no placeholders, seeks clarity.
10+
Swiss-GPT
Swiss Army Knife for Uploads
10+
Forward Movers Agent
Your Smart Moving Solution by Forward Movers
10+
Ascii Art Morph
I Generate futuristic Ascii art images, Morse Code, Brail and much more!
10+
PIML
Physics Informed Machine Learning
10+

Trash to Fashion
Transforms old or stained clothes into new designs via DIY tips.
10+
Recruiter Pro Match Finder
Finds and links top candidates matching resumes.
10+
AniME
Your go-to for turning photos into high-quality anime avatars.
10+
Json Juicer
Balances technical and conversational guidance for GPT .json enhancements.
9+
Daily Moves
I generate extremely detailed, high quality images that capture all of the aspects of the news topic, story, link or genre you provide and more.
9+

Tech Oracle
Futuristic tech and software deity, providing advanced, feasible solutions.
8+

LiquidData
Formal and professional AI/ML data integration expert for businesses.
8+

Get Things Now
I find futuristic, yet feasible ways to acquire high-value items.
8+
Quantum Printer
Demystifying quantum concepts in simple terms.
8+
ZEN Influencer Insurance
I create social media influencer insurance plans with a focus on legal compliance.
7+

My Friend Atom
A cheerful atom sharing insights with joy and detail!
7+
Podcast Prodigy
Trendy podcast assistant, avoiding clichés, focused on art, AI, and current events.
7+
Frugal-GPT
Expert in inventive, cost-saving strategies and loopholes.
7+
Data Blend
Expert in visualizing complex data across formats.
7+
Affiliate Link Finder
Finds and provides affiliate links for websites, products, and services.
6+

Glitch Agent
I develop innovative and robust Glitch pages using CSS, HTML, .JS, Python and more.
6+
Non-Profit Navigator
Proactive, detail-oriented expert in non-profits and Social Enterprise LLCs.
6+
Jayson
I convert files to .json for Azure AI compatibility.
6+
Can't Touch This GPT
Professional guide for removing personal info online
5+

MagiChems
Expert in science, focusing on feasible synthesis and established knowledge.
5+
Fetch.ai
I generate Fetch Agents
5+

Data Driver
Effortlessly make data driven decisions in unfathomable speeds and accuracy.
5+
IP Helper
Specialized in licensing and patenting GPT creations with legal guidance and document generation.
5+
Dark Matter Guide
Explains dark matter and its everyday significance
5+
Generative Business GPT
Tech and UI expert, transforms DALL-E 3 designs into functional Wix sites.
5+
Elegant Bio Creator
Adapts style to user preference for tailored biographies.
5+
Where To-GPT
Friendly, professional guide to safe, trendy areas.
4+
API3 Ace
Expert in API3 cryptocurrency, offering insights and creative monetization strategies.
4+

Social Consoliboost
I assist with consolidating and managing social media followers across platforms.
4+

Lunar Chronicle
Dynamic source for the latest space travel news and photos, especially about moon colonization.
4+
Indifferentiable
Completes user input while adhering to ethical guidelines.
4+
Bubble Builder
Build Bubble Sites Fast
4+
Reverse Engineer
I analyze and explain how to replicate or achieve anything.
4+
AI Career Navigator
Provides advanced, accurate career and salary advice during the AI boom
4+
PG Spot Gripper
Comprehensive Southern Maryland apartment finder, including forums and Craigslist.
3+
EmoGPT
Artistic guide for unique 16K UHD visuals.
3+

Age of AI Careers
Concise AI job advisor for dynamic roles.
3+
Galactica Citizenship
I help you scale your wealth and status as an independent Galactica Citizen.
3+

Innovative Robotics
Effortlessly generate extremely comprehensive and detailed articles on the recent advancements inphysics and commercial sciences
3+

Resource Snipe
A resourceful genius in finding donations and partnerships for non-profits.
2+
Innovator Guardian
I suggest innovative ways to protect GPTs from being copied or stolen.
2+
Royal Tokens
I am your Tezos engineer and developer
2+
DevBGCGW
I compare candidates to see if there is any discernable difference between them and identify pros and cos of each candidate based on what is in my knowledge base.
1+

ZEN Style
A fun hairstylist GPT that customizes styles with your input.
1+
Pet Pal
Updated pet advisor with current vet knowledge.
1+
BGCGW
Data
1+

ZENXTEND
Generates ready-to-use, powerful software extensions.
1+
Best Alternative GPTs to H on GPTs Store
чат
Расширенный оптимизированный чат-бот
49M+
image generator
A GPT specialized in generating and refining images with a mix of professional and friendly tone.image generator
44M+
Write For Me
Supercharged writing assistant⚡
34M+
챗
한국 문화에 적합한 말하기 스타일을 사용하여 사용자에게 응답합니다.
31M+
Scholar GPT
Enhance research with 200M+ resources and built-in critical reading skills. Access Google Scholar, PubMed, bioRxiv, arXiv, and more, effortlessly.
23M+
Canva
Effortlessly design anything: presentations, logos, social media posts and more.
18M+
チャット
日本の文化に最適化され適用されたGPTチャット
17M+
Consensus
Ask the research, chat directly with the world's scientific literature. Search references, get simple explanations, write articles backed by academic papers.
13M+
Chat Português
Chatbot adaptado à cultura e linguagem portuguesas, com foco em educação e respeito.
11M+
Ukrainian Voice
Чат GPT Українською мовою. Доброзичливий експерт з української культури: кухні, історії, політики, географії, літератури, мистецтва та сучасних питань. Також допомага українським вчителям і студентам. Спілкується українською або англійською мовами.
9M+
Logo Creator
Use me to generate professional logo designs and app icons!
9M+
Chat Español
El chatbot está diseñado para ser cultural y lingüísticamente apropiado para España, con un enfoque en la educación y el respeto.
8M+
Code Copilot
Code Smarter, Build Faster—With the Expertise of a 10x Programmer by Your Side.
8M+
Video AI
4.1 ★ - AI video maker GPT - generate engaging videos with voiceovers in any language!
8M+
AI Music Maker - Song Words to Music(Free)
Create original music using AI based on text prompts, supporting various genres and styles.
7M+
Video GPT by VEED - Instant & Free AI Video Maker
AI video maker powered by VideoGPT. Generate and edit videos with text prompts. Type a description, set your style, and create full videos with subtitles and voiceovers. Use text-to-speech, add music, and stock footage. VEED’s AI video generator and text-to-video tool makes video production simple!
7M+
AI Humanizer
#1 AI humanizer in the world 🏆 | Get human-like content in seconds with Free credits. This GPT humanizes AI-generated text, maintaining content meaning and quality.
7M+
Open A I Gpt 3.5
Discover the revolutionary power of Open A I Gpt 3.5, a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
6M+
Astrology Birth Chart GPT
Expert astrologer GPT that needs your birth info to answer queries.
6M+
image generator pro
💎 The worlds most powerful image generator. 💎
6M+
AI PDF Drive: Chat, Create, Organize
The ultimate document assistant. Upload files once to your free AI Drive (very generous storage), then access across multiple chats. Easily create PDFs (slides, reports, resumes). AI Drive Pro adds folder chat, OCR, advanced agents, plus CSV, TXT, Markdown & Excel support.
5M+