<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=edge"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
<
title
>Row Themes - Primer CSS</
title
>
<
link
href
=
rel
=
"stylesheet"
/>
</
head
>
<
body
>
<
div
class
=
"text-center"
>
<
h2
style
=
"color:green"
>GeeksforGeeks</
h2
>
<
h4
>Primer CSS - Row Themes</
h4
>
</
div
>
<
div
class
=
"d-flex flex-justify-center"
>
<
div
class
=
"Box mt-5"
>
<
div
class
=
"Box-row Box-row--focus-gray"
>
Gray Focus color class without navigation focus
</
div
>
<
div
class
=
"Box-row Box-row--focus-blue"
>
Blue Focus color class without navigation focus
</
div
>
<
div
class
=
"Box-row Box-row--focus-gray navigation-focus"
>
Gray Focus color class with navigation focus
</
div
>
<
div
class
=
"Box-row Box-row--focus-blue navigation-focus"
>
Blue Focus color class with navigation focus
</
div
>
</
div
>
</
div
>
</
body
>
</
html
>