One option is to use the tcolorbox package. There are many style options for visualization. Some examples are:
\documentclass{article}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage[many]{tcolorbox}
\begin{document}
\title{GROUP THEORY}\bfseries
\maketitle
\section{ALGEBRIC SYSTEM :}
\begin{tcolorbox}
NOTE: The algebraic system define over operator $\star$ , which is \emph{closed} and \emph{associative} is called SEMIGROUP.
\end{tcolorbox}
\begin{tcolorbox}[title=NOTE:,colframe=blue,colback=blue!5!white,arc=0pt,fonttitle=\bfseries]
The algebraic system define over operator $\star$ , which is \emph{closed} and \emph{associative} is called SEMIGROUP.
\end{tcolorbox}
\newtcbtheorem[number within=section]{note}{Note}{enhanced,drop fuzzy shadow,
colframe=red!75!black,colback=red!5!white,
colbacktitle=red!10!white,coltitle=red!20!black}{note}
\begin{note}{}{somenote}
The algebraic system define over operator $\star$ , which is \emph{closed} and \emph{associative} is called SEMIGROUP.
\end{note}
\end{document}

\fbox{}what you want? – Sigur Nov 06 '13 at 12:26