Computer Science, asked by Sandeep0505, 1 year ago

Please solve c. Question I will mark you as brainliest

Attachments:

Answers

Answered by supriya39
1
1

Open a text editor. On a Windows computer, you'll usually use Notepad, or Notepad++ whereas Mac users will use TextEdit:Windows - Open Start 



 , type in notepad, or notepad++and click Notepad or "Notepad++" at the top of the window.Mac - Click Spotlight 

 , type in textedit, and double-click TextEditat the top of the results.

2
Set up your document type for HTML.Type in <!DOCTYPE html> and press ↵ Enter, then type in <html> and press ↵Enter again. Finally, type in <head> and press ↵ Enter. The top of your document should resemble the following: [1]

<!DOCTYPE html> <html> <head>

3
Add a tab title for your web page. This is the title which will appear on the browser tab when you open the page (e.g., "Facebook"). Type in <title>, enter your web page's tab title, and type in </title>. You'll then add the closing "Head" tag, which is </head>, on its own line. The title section should look like this:

<title>My Web Page</title> </head>

4
Indicate the beginning of your page's body text. Type in <body> below the closed "Head" tag. This ensures that the rest of your document's text will be considered the web page text until you close the "Body" tag. You should have the following:

<body>

5

Create a page heading. Your page heading is the title which will appear at the top of your website. To create one, type in <h1>, add your heading, and then close the tag with </h1>. For example:

<h1>Welcome to My Page!</h1>


Similar questions