You can't store info's from a user and invite friends using only on HTML

.
Because HTML can't do calculations.
You can by using a Database, or Javascript, or PHP.

Example [ Javascript ] :
[quote]<script language="Javascript">
var pulnem;
pulnem = prompt("Please enter your full name.", " ");
document.write(pulnem);
document.write(" ,have a nice day.");
</script>[/quote]
[b]pulnem[/b] = It's a variable, you can change it to whatever you like..
I hope I helped you..