Internal style sheet का उपयोग single document के लिए एक unique style जोड़ने के लिए किया जाता है। इसे <style> टैग के अंदर HTML पेज के <head> सेक्शन में परिभाषित किया गया है।
उदाहरण:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: linen;
}
h1 {
color: red;
margin-left: 80px;
}
</style>
</head>
<body>
<h1>The internal style sheet is applied on this heading.</h1>
<p>This paragraph will not be affected.</p>
</body>
</html>