In: Computer Science
A basic default web page can be made using html.
<html>
<head>
<title>Default Web Page</title>
</head>
<body>
<p align = "right">
Your Name <!--Add your name here-->
</p>
</body>
</html>
<p> tag allows you to include preformatted text into the web page. The align property of this tag can be used to right align the text.
Note:- Please make sure to include your name to the html page at the <p> tag.
CODE SCREENSHOT
OUTPUT
The output will show your name on the right side of the screen.