Adam
Adam

Reputation: 21

How to create big style comment for HTML templates

If you look at the source code of some HTML sites, they use some giant alphabets to comment out or to provide their site name. Something where you write the word and it converts to to HTML like below:

<!--
------   
-
---
-
------
!-->

anyone know how to create these types of comments?

Upvotes: 1

Views: 42

Answers (1)

Pikamander2
Pikamander2

Reputation: 8299

Just Google "Big ASCII text art" and you'll find several online generators.

For example, here's one from bigtext.org:

    _       _                 
   / \   __| | __ _ _ __ ___  
  / _ \ / _` |/ _` | '_ ` _ \ 
 / ___ \ (_| | (_| | | | | | |
/_/   \_\__,_|\__,_|_| |_| |_|

Here's another website that lets you customize the font and a few other things. Example (using the font 'tinker-toy'):

  O     o           
 / \    |           
o---o o-O  oo o-O-o 
|   ||  | | | | | | 
o   o o-o o-o-o o o 

Upvotes: 1

Related Questions