$ curl cheat.sh/
 cheat.sheets:lynx 
# lynx
# Classic non-graphical (CLI) web browser

# Dump [URL]; do not show link URLs.
lynx -dump -nolist [URL]

# Creating your keystroke file for use with lynx(1).
lynx -cmd_log [FILE]
# Use above keystroke file to run repeating website actions.
lynx -accept_all_cookies -cmd_script=[FILE]

# Convert HTML from STDIN to text, then dump it to STDOUT.
lynx -force_html -stdin -dump -nolist

 tldr:lynx 
# lynx
# Command-line web browser.
# More information: <https://lynx.browser.org>.

# Visit a website:
lynx example.com

# Apply restrictions for anonymous account:
lynx -anonymous example.com

# Turn on mouse support, if available:
lynx -use_mouse example.com

# Force color mode on, if available:
lynx -color example.com

# Open a link, using a specific file to read and write cookies:
lynx -cookie_file=path/to/file example.com

# Navigate forwards and backwards through the links on a page:
Up arrow key, Down arrow key

# Go back to the previously displayed page:
Left arrow key or u

# Exit:
q then y

$
Follow @igor_chubin cheat.sh