Skip to content

Latest commit

 

History

History
40 lines (37 loc) · 988 Bytes

README.md

File metadata and controls

40 lines (37 loc) · 988 Bytes

html-css-styles

Basic html webpage with css styles

<title>Basic Webpage</title>

Welcome to My Website

<main>
    <section>
        <h2>About Me</h2>
        <p>This is a simple webpage with some basic styling.</p>
    </section>

    <section>
        <h2>Services</h2>
        <p>Here you can describe the services you offer.</p>
    </section>
</main>

<footer>
    <p>&copy; 2024 My Website</p>
</footer>