CSS : Head Section
There is a method of using a style sheet that allows you to design a style appropriate to give effect as desired in the web pages. We will create a style in the head section which begins with the tag <style> and ends with the closing </ STYLE>. Below will be displayed <span> style in the document head. (SPAN is part of a web page. Next line SPAN would not be cut until the tag is closed):
<HEAD>
<style>
<! -
SPAN {color: red; font-style: italic}
->
</ STYLE>
</ HEAD>