Posts by Gustavo Primolan • 118 points
2 posts
-
10
votes3
answers2835
viewsA: What is the difference between <q>, <blockquote> and <cite> tags in HTML? And how to use them correctly?
All about HTML semantics The HTML element <cite> represents a reference to an artistic work. Should include the title of the work or a reference URL, which can be in an abbreviated form…
-
0
votes2
answers338
viewsQ: How to get all ips associated with a Python domain?
I need to create an application that gets all the ips associated with a domain. I tried using the following Python code: import socket print(socket.gethostbyname('facebook.com.br')) However, just…