2
After the Three-way Handshake, that is, establishing the TCP connection between the client and the server. The client starts downloading the files.
My doubts are:
- If in an HTML page that contains CSS files, the files are downloaded by browser synchronously or asynchronously? and
- After all the downloaded files how the processing between the files works for the final display of the page "stylized"?
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
@Sam this question answers only question 2.
– DNick
Related: How the browser reads and interprets css?
– Sam