Java was originally developed by James Gosling at Sun Microsystems (which has since been acquired by Oracle) and released in 1995 as a core component of Sun Microsystems' Java platform
1995 the answer
I think it is D
Hope my answer help
Sorry it is wrong
Answer:
The steps that Fatima needs to follow in-order to send an email on the Outlook include:
1. Open the Outlook application.
2. Under the Home tab, click the New Email button.
3. Click the To button to choose a contact
4. Click the Send button after typing the message.
Explanation:
For every new email to be sent out through the Outlook, there are steps to follow like ensuring that the Outlook application is appropriately opened. Later, a<em><u> tab showing new email should be clicked to open the dialogue box for typing the email message.</u></em>
<em>After the message has been typed, a contact to whom the message is going to be sent to is selected before actually sending out the message by a click of a button.</em>
Answer:
We create a block div with an id="block" and we make the css code
Explanation:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>bloque</title>
<link href="bloque.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--we create the div with the id="block" and a text "hello world"-->
<div id="block"> hello world </div>
</body>
</html>
/* CSS Document */
/* we create the CSS file, then with the same id="block" we're programming in the CSS code*/
#block{
background-color: #ECDEC9;
padding: 20px;
float: left;
font-size: 50px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", "sans-serif";
}