view on light mode

welcome to Rima's basic HTML commands haul compiled html, c++, customrp basics ii have (all random)

Q : what is html?
A: HTML stands for HyperText Markup Language. It is a standard markup language for web page creation. It allows the creation and structure of sections, paragraphs, and links using HTML elements (the building blocks of a web page) such as tags and attributes. css allows you to style the document (html language)


an example of html styles is:
<!DOCTYPE html>
<html>
<body>

<p>I am normal</p>
<p style="color:red;">I am red</p>
<p style="color:blue;">I am blue</p>
<p style="font-size:50px;">I am big</p>

</body>
</html>
this allows for developers to change the color and sizing of text on display.


html background color
<!DOCTYPE html>
<html>
<body style="background-color:powderblue;">

<h1>Sollux Captor</h1>
<p>14, they/he.</p>

</body>
</html>
self explanatory. my favorite color ii2 yellow.


html LINKING
<!DOCTYPE html>
<html>
<body>

<h1>HTML Links</h1>

<p><a href="https://rentry.co/shirog/">Visit Tsum's Rentry!</a></p>

</body>
</html>
this allows you to link a website, similar to THIS


<!DOCTYPE html>
<html>
<body>

<h2>Italian Trulli</h2>
<img src="https://staticg.sportskeeda.com/editor/2022/11/5718d-16687730132048-1920.jpg" style="width:100%">

</body>
</html>
this allows you to ATTACH AN IMAGE/GIF to your website


like this*


next

work in progress, this website was updated 8/6/2023

Edit Report
Pub: 06 Aug 2023 23:39 UTC
Edit: 17 Oct 2023 06:29 UTC
Views: 1269