If you mean just HTML, then no. You'll need a server side script to create your dynamic HTML.
pritaeas
Posting Prodigy
9,547 posts since Jul 2006
Reputation Points: 1,194
Solved Threads: 1,496
Skill Endorsements: 98
server side, or client side... with a bit of javascript you can have a bit of a dynamic touch. but there is need to scripting, that part is right.
stultuske
Industrious Poster
4,493 posts since Jan 2007
Reputation Points: 1,377
Solved Threads: 630
Skill Endorsements: 25
html is not scripting. JavaScript is scripting, perl is scripting, ...
the client side scripting is not the html itself, but the scripts in a scripting language that are coded in the html document:
<script type="text/javascript">
function showAlert(){
alert("Hello world!");
}
</script>
stultuske
Industrious Poster
4,493 posts since Jan 2007
Reputation Points: 1,377
Solved Threads: 630
Skill Endorsements: 25