Hi Vishnu,
Welcome to this community. Being a newbie to this and as @psDevUK suggested check out poshud site, for live demo check Adam Driscoll . If you are not familiar with UD components, would highly suggested to get familiarize yourself what UD has to offer before you start on your project. Once you are aware of it component, have layout of how you want to design your dashboard, it will be easy in long run. Start bit by bit.
In starting I picked up some code from forums and started working on it. but as I progress I came to know more components which were more suitable for my requirement and had to rework again.
UD is like Fast & Furious movie series, you think ok tanks are here in next car jumping out of plane. You think what they can do more then boom submarine, car falling from buildings. Same way as UD is getting mature lots of new enhancement, features are being added to it.
If you ran into issues UD Guru’s @adam @BoSen29 @psDevUK and many more are here to help. Caution: Don’t get caught up with @psDevUK Sparkles His showoff will make your Dashboard look dull. 
“I tried to check how to import the servers but not getting imported or able to display that in dashboard.”
Here is a sample of how to get csv data in grid.
If (-Not (Get-Module UniversalDashboard.Community -ErrorAction SilentlyContinue)) {
Import-Module UniversalDashboard.Community
}
$HomePage = New-UDPage -Name “HomePage” -Title “HomePage” -Icon home -Content {
New-UDRow -Columns {
New-UDGrid -Title “Service Status” -PageSize 25 -Headers @(“DisplayName”, “Status”) -Properties @(“DisplayName”, “Status”) -Endpoint {
$import = Import-Csv -Delimiter ‘^’ -Path “C:\service.csv”
$import | ForEach-Object {
$BgColor = ‘White’
FontColor = 'Black'
if (_.Status -ne ‘Running’) {
$BgColor = ‘red’
$FontColor = ‘White’
}
[PSCustomObject]@{
DisplayName = $_.DisplayName.ToString()
Status = New-UDElement -Tag 'div' -Attributes @{ style = @{ 'backgroundColor' = $BgColor; color = $fontColor } } -Content { $_.Status.ToString() }
}
} | Out-UDGridData
}
}
}
$Theme = Get-UDTheme Darkdefault
$Dashboard = New-UDDashboard -Title “Service Status” -Pages @($HomePage) -Theme $Theme
Start-UDDashboard -Name “Status” -Port 10002 -Dashboard $Dashboard -AutoReload
Input file: Get-Service | Select-Object DisplayName, Status | Export-Csv -Delimiter ‘^’ -Path “C:\service.csv”