DEV Community

Your Average Roblox Game Dev
Your Average Roblox Game Dev

Posted on

How To Create a Basic Text In html

Creating an html text is very simple and consists of only 5 steps!

  1. Open up your coding software

  2. Make an html File

  3. I'm lazy so just put this in the Code -

<html>
  <Body>
     <p>your text here</p> <!-- p = paragraph(small). h1 = heading1(large) -->
  </Body> 
</html>
Enter fullscreen mode Exit fullscreen mode

Some Lua I Know -

print("I'm lazy")
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Image of Stellar post

Check out Episode 1: How a Hackathon Project Became a Web3 Startup 🚀

Ever wondered what it takes to build a web3 startup from scratch? In the Stellar Dev Diaries series, we follow the journey of a team of developers building on the Stellar Network as they go from hackathon win to getting funded and launching on mainnet.

Read more

👋 Kindness is contagious

Dive into this thoughtful article, cherished within the supportive DEV Community. Coders of every background are encouraged to share and grow our collective expertise.

A genuine "thank you" can brighten someone’s day—drop your appreciation in the comments below!

On DEV, sharing knowledge smooths our journey and strengthens our community bonds. Found value here? A quick thank you to the author makes a big difference.

Okay