Web Note. You can access the feature by selecting "Make a web note" and several options on the toolbar will pop up for use. Microsoft has a help page here: https://support.microsoft.com/en-us/help/17221/windows-10-write-on-the-web
Software problem.
Assuming "Software" is one of the available answers.
If you’re looking for an exact answer, we weren’t given any options, but in my personal experience just explain that you appreciated them taking their time out of their day and say that you’re no longer interested in their offer.
Ask anything here: https://www.answers.com/search?q=Ask%20any%20question&filter=all
This contains pretty much what you need:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Page Title</title>
</head>
<body>
<h1>First paragraph</h1>
<p>This is a paragraph of text.</p>
<h2>Second level paragraph</h2>
<p>
Here is an unordered list of options:
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Here is another unordered list of options:
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Here is an ordered list of options:
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
</p>
<h4>Third level</h4>
</body>
</html>