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)