<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
title
>Bootstrap Alerts</
title
>
<
meta
charset
=
"utf-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1"
>
<
link
rel
=
"stylesheet"
href
=
<
script
src
=
</
script
>
<
script
src
=
</
script
>
<
script
src
=
</
script
>
</
head
>
<
body
>
<
h1
style
=
"color:green;text-align:center;"
>
GeeksforGeeks
</
h1
>
<
div
class
=
"container"
>
<
div
class
=
"alert alert-success alert-dismissible fade show"
>
<
strong
>Success alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-info alert-dismissible fade show"
>
<
strong
>Info alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-warning alert-dismissible fade show"
>
<
strong
>Warning alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-danger alert-dismissible fade show"
>
<
strong
>Danger alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-primary alert-dismissible fade show"
>
<
strong
>primary alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-secondary alert-dismissible fade show"
>
<
strong
>Secondary alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-light alert-dismissible fade show"
>
<
strong
>Light alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
<
div
class
=
"alert alert-dark alert-dismissible fade show"
>
<
strong
>Dark alert!</
strong
>
<
button
type
=
"button"
class
=
"close"
data-dismiss
=
"alert"
>
×
</
button
>
</
div
>
</
div
>
</
body
>
</
html
>