There are many websites that support DHE. From the top 10 million Alexa results, a scan in 2014 showed that nearly 60% of websites supported DHE. From a blog post, the numbers are given as:
Supported Handshakes Count Percent
-------------------------+---------+-------
DHE 267507 59.2524
ECDHE 97570 21.6116
Many of these are just the result of Apache providing its default 1024-bit DHE, but it still shows support. Finding a random website that supports TLS will still give you a good chance of getting one which supports DHE. Wikipedia supports DHE, for example.
You can test if a standard website supports DHE using the openssl command line utility:
openssl s_client -cipher DHE -connect example.com:443
A website that does not support the specified cipher will return a handshake error.
openssl s_serverusually with-wwwor sometimes-WWWto run your own minimal server with extensive controls over the SSL/TLS/crypto options. On (all?) Unix you can even do this on the same system; on Windows wireshark (really winpcap) usually can't capture loopback traffic so you need to use two systems. – dave_thompson_085 Dec 11 '17 at 00:37