How to add loading page/screen on Service portal with image/logo
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2022 06:50 AM
Hi All,
I need to add loading page with image/logo on service portal till portals home/main page display. (in short this loading page needs to display before displaying the home page of service portal)
this loading page needs to display for few seconds and post that automatically needs to go/display the home page of service portal.
Is anyone know how to achieve this functionality?
Regards,
Akshay
Labels:
- Labels:
-
Service Desk
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2022 07:04 AM
<!DOCTYPE html>
<html>
<head>
<title>HTML Meta Tag</title>
<meta http-equiv = "refresh" content = "3; url = URL you want to redirect to" />
</head>
<body>
<img src="image source url( upload image in images tables)" alt="Girl in a jacket" width="500" height="600">
</body>
</html>
Mark correct and helpful