That is incorrect. When you pull up a web page you are talking to port 80 on the server. Frames look like this:
FRAME1
SA=source address
DA=destination address
SP=souce port
DP=destination port
FRAME2
SA=myip, DA=webserver
SP=client port >1024, DP=80
Hey web server...wanna talk?
FRAME3
SA=webserver, DA=myip
SP=80, DP=clientport
Sure thing client, here's my sequence mumber
FRAME4
SA=myip, DA=webserver
SP=^^^clientport, DP=80
ACK SEQ#+1, SEQ=X
-----End of three way handshake, TCP connection is now open-----
FRAME5
SA=myip, DA=webserver
SP=clientport, DP=80
Hey server give me webpage.
FRAME6
SA=webserver, DA=myip
SP=80, DP=clientport
Here's the first datagram for the web page..
and so on and so forth.
My big long explanation is that a TCP connection consists of two sockets (myip:clientport, webserver:80) the connection occurs between these socket pairs.
hope that explains it