I have this html file
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>"This is my first page"</title>
<link href="assignment3-style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p>
<ol style="I want the default style here">
</ol>
</p>
I want to override the style set by my stylesheet with the default style for ordered lists. How do I accomplish this?