How to make the minimum web broswer:

According to my experience, the core html component is:


1. `<p></p>` for text

2. `<a></a>` for links

3. `<input></input>` for input, must have id

4. `<img></img>` for image, src could be base64 content

5. `<br>` for new line, `&nbsp;` for space character


When user input something in input tag, we save it in current page global dict, the key is input_id, then when user click any link at that page, we send that dict as url parameters along with that link.


When front-end browser show the content, it automatically do a scale based on the longest line.


JWT as an authentication method could always be in the `<a></a>` link so the user don't have to login again.


The whole thing is similar to wap web page.


#html #idea #yingshaoxo