Below is my code, I've done a bit of research on this and can't seem to find an answer. When I run the page the list actually sits out from the viewport, how can I get it right on or beside the left hand side.
css
ul {list-style-type:none;margin-left:0;padding-left:0}
li {margin-left:0;padding-left:0}
html
<body>
<ul>
<li>link1</li>
<li>link2</li>
</ul>
</body>
thank you.
css
ul {list-style-type:none;margin-left:0;padding-left:0}
li {margin-left:0;padding-left:0}
html
<body>
<ul>
<li>link1</li>
<li>link2</li>
</ul>
</body>
thank you.