Skip to content

Commit

Permalink
Update home.jsp
Browse files Browse the repository at this point in the history
  • Loading branch information
devopstrainingblr authored Mar 23, 2021
1 parent 3aee4c1 commit 7786397
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/main/webapp/jsps/home.jsp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="java.net.*" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
Expand All @@ -12,6 +12,19 @@
<h1 align="center">Welcome to Mithun Software Solutions.</h1>
<h1 align="center"> Mithun Software Solutions- Very Good Training center for DevOps with AWS in Maratha Halli Bangalore India and also for Job Assitance Job Support also...Teaching Real Time scnerios</h1>
<hr>
<br>
<h1><h3> Server Side IP Address </h3><br>

<%
String ip = "";
InetAddress inetAddress = InetAddress.getLocalHost();
ip = inetAddress.getHostAddress();
out.println("Server Host Name :: "+inetAddress.getHostName());
%>
<br>
<%out.println("Server IP Address :: "+ip);%>
</h1>
<hr>
<div style="text-align: center;">
<span>
<img src="images/mithunlogo.jpg" alt="" width="100">
Expand Down

0 comments on commit 7786397

Please sign in to comment.