Programming Tips - Web: nice font-family for web page

Date: 2021jul20 Q. Web: nice font-family for web page A. Here is a nice way to start a web page. It will look good to most users and nothing else needed for basic text. The font-family is borrowed from Bootstrap 4.
<!DOCTYPE html> <meta charset="UTF-8"/> <style> * { font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; } </style>