I have used bootstrap alerts class but it's view is -

Instead of -
I have added the refrence under head tag -
<script src="Scripts/bootstrap.min.js"></script>
But still it is not working. Please help as I am new for the webpage.
I have used bootstrap alerts class but it's view is -

Instead of -
I have added the refrence under head tag -
<script src="Scripts/bootstrap.min.js"></script>
But still it is not working. Please help as I am new for the webpage.
Add the bootstrap CSS to your stylesheet references.
With a CDN:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
Alternatively referencing the source from your own server:
<link rel="stylesheet" type="text/css" href="*PATH_TO_YOUR_STYLE_FOLDER*/bootstrap.min.css">