I want to make an application which looks something like this image:

I need it to open a website on click of the button.
I used a Tkinter code which looks like this:
def openweb():
webbrowser.open(url,new=new)
Btn = Button(root, text = "Check URL",command=openweb)
But it is opening in the default browser.
Is there some way to handle it?