Wednesday, May 13, 2020

How to create index. html with different color

Basic HTML Page 



I have created the below very Basic  html text to test the F5 load balancer lab. basically i had three servers in the backed sever pool Red, Green and Blue. i have used below the index.html pages to replicate the web server.


############## Used for Red server ####################
<html>
<body style="background-color:Tomato;">

<h1 style="background-color:Tomato;"> RED Server</h1>
<p style="background-color:Tomato;"> This is server RED</h1>


############## Used for Blue server ####################
<html>
<body style="background-color:Blue;">

<h1 style="background-color:Blue;"> BLUE SERVER</h1>
<p style="background-color:Blue;"> This is server Blue</h1>


############## Used for Green server ####################
<html>
<body style="background-color:Green;">

<h1 style="background-color:Green;"> Green Server</h1>
<p style="background-color:Green;"> This is server Green</h1>



No comments:

Post a Comment