Posts

web Design Color

  Tips for Choosing Color Combinations: Use the 60-30-10 rule (Primary 60%, Secondary 30%, Accent 10%). Always check contrast for accessibility (e.g., WebAIM Contrast Checker ). https://webaim.org/resources/contrastchecker/ Test colors in light and dark modes if your site supports both. Helping Tools For Color Choice 1. https://www.colorsandfonts.com/ 2. https://colorhunt.co/ 3.https://www.happyhues.co/ 4.https://coolors.co/palettes/trending

Networking With Packet Tracer

  Download and Install Packet Tracer. Simple Network with Packet Tracer. Network with Switch, Router in Packet Tracer.

Excel Data Validation

1. cell value contain 4 character only and left two character is EE and last two character is digit and can not support duplicate value. go to data tab-->validation-->ALLOW[custom] and type following formula =AND(LEN(B1)=4,LEFT(B1,2)="EE",COUNTIF($B$1:$B$76,B1)<2,ISNUMBER(VALUE(RIGHT(B1,2)))) 2. 

How to Access webmail

 1. open browser 2. type mail.domainName 3.provide userd id and password 4.login

Project Web Design Assignment

Image
  Assignment-3 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Employee Information Form</title> </head> <body>     <div style="width:30%; margin: auto;">         <form action="#" method="POST">             <fieldset>                 <legend>Employee Details</legend>                                 <!-- Name Field -->                 <label for="name">Name:</label>                 <input type="text" id="name" name="name" required><br><br>           ...

AWS Cloud Practitioner Exam Preparation-1

Image
  1.        Which AWS service or feature can be used to restrict the individual API actions that users and roles in each member account can access? a.        Amazon Macie b.       AWS organizations c.        AWS shield d.       AWS IAM Correct answer AWS Organizations Explanatin: AWS Organizations offers Service control policies (SCPs) which are a type of organization policy that you can use to manage permissions in your organization. SCPs offer central control over the maximum available permissions (API actions) for all accounts in your organization. SCPs help you to ensure your accounts stay within your organization’s access control guidelines. SCPs are available only in an organization that has all features enabled. CORRECT: "AWS Organizations" is the correct answer. INCORRECT: "Amazon Macie" is incorrect. Amazon Ma...