id css html code example
Example 1: css id
<style>
#your_id{
color: blue;
font-size: 24px;
}
</style>
<h1 id="your_id">Example text</h1>
Example 2: css id
#id {
css declarations;
}
Demo
Example 3: how to call an id in css
<style>
#selector {
color: red;
}
</style>
<div id="selector">
<p>This is an id</p>
</div>
Example 4: referance html id css
<style>
#test {
}
</style>
<h1 id="test"></h1>
Example 5: html id
<style>
#grepperHeader {
background-color: lightblue;
color: navy;
padding: 40px;
text-align: center;
}
</style>
<h1 id="grepperHeader">grepperHeader</h1>
Example 6: div id css
<p class="haut">
<a href="#haut">Haut de page</a>
</p>