Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Programming Tutorials › Some basic html codes

PostSome basic html codes

Posts 1–3 of 3 · Page 1 of 1
KD
kdaisbest48
Some basic html codes
if you ever want to make a basic web page paragraph this is what you do first:
<html>
<body>
</body>
</html>
in between <body> and </body is where the paragraph goes, such as:
<body>
this is where the paragraph goes.
</body>
got it? good.

__________________________________________________ ______________
a form is how you register/login to a website or game, this is how to program a form:
first you tell the computer you are about to do a form, here is the code:
<form name="order" action="../cgi-bin/processfrm.cgi"
</form>
now that you are done with that it is time to put the elements in it.
to program the thing where you put you username or email in you do this:
<input type="text"/>
to program the thing that you put the password in you do this:
<input type="password"/>
to make a checkbox which is the thing that you click and it does a check mark you do this:
<input type="checkbox"/>
to program a reset button you do this:
<input type="reset"/>
to do the submit button you do this:
<input type="submit"/>
but there is also a cool trick you can do with the submit button whick changes the word in it from submit to whatever you want it to, this is how:
<input type="submit" value="register"/> or it can be
<input type="submit" value="go"/> or anything, get the picture?
my fingers hurt right now so check back next time for how to make the controls in the form work together
BYE!
#1 · 17y ago
KD
kdaisbest48
cool and it works
#2 · 17y ago
KD
kdaclan
wow that is so cool
#3 · 17y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Some HTML CODEING! For forums!By Ironelite35 in Debate Fort
    12Last post 17y ago
  • ALL OF MY VISUAL BASIC SOURCE CODES!!By Pixie in Visual Basic Programming
    5Last post 17y ago
  • [TUT] Basic HTMLBy alexrules057 in Web Languages
    21Last post 16y ago
  • Visual Basic 6 codesBy jokuvaan11 in WarRock - International Hacks
    13Last post 19y ago
  • My very first Visual basics 2008 coded hack!!By Ragehax in Combat Arms Hacks & Cheats
    60Last post 16y ago

Tags for this Thread

#basic#codes#html