@vip01 you cannot hyperlink the quick replies but you can create an adaptive card that does the same thing. For example the first button here will open microsoft.com when I press it:

Here is the detail of the card:

And its JSON:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "Microsoft.com",
"url": "http://www.microsoft.com"
}
]
},
{
"type": "Container",
"items": [
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Customer Support",
"data": "Customer Support"
},
{
"type": "Action.Submit",
"title": "Knowledge Base",
"data": "Knowledge Base"
},
{
"type": "Action.Submit",
"title": "FAQ",
"data": "FAQ"
},
{
"type": "Action.Submit",
"title": "Store Hours",
"data": "Store Hours"
}
]
}
]
}
]
}