Welcome to my website.

What are Relationships in Programming?

Relationships in programming is how one piece is connected to each other. The <p></p> is children of the <body></body> and the <h1></h1> is children of the <header></header>. (Parent and Child)

<body>
    <p></p>
</body>
            
<header>
    <h1></h1>
</header>