{{theTime}}

Search This Blog

Total Pageviews

HTML <pre> tag

- Browsers normally render pre text in a fixed-pitched font, with whitespace in tact and without word wrap.

<!DOCTYPE html>
<html>
<body>

<pre>
Browsers normally render    pre text in a fixed-pitched font, 
with whitespace in tact, and without word wrap.
</pre>

</body>
</html>


Output:

Browsers normally render    pre text in a fixed-pitched font,   with whitespace in tact, and without word wrap.

No comments:

Mysql - java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

Add allowPublicKeyRetrieval=true to the JDBC URL. jdbc:mysql://localhost:3306/db?allowPublicKeyRetrieval=true&useSSL=false