Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Make a website about your major, computer information systems, and the opportuni

ID: 3885787 • Letter: M

Question

Make a website about your major, computer information systems, and the opportunities in this major. This website should have four pages. The main page should have information about the field of information technology and the courses you would take in a typical CIS program. Also, add reasons why you decided to major in CIS. Finally, the main page should have three links. Each link will link to a page that will have information about a position that you may want to obtain after graduating with your CIS degree. do it on Computer sience and web design. create three different pages to describe. The pages that describe the position should have duties of the position, expected growth, outlook, salaries, working conditions, major companies that hire for that particular position, related images (at least 3), and so forth.
Each page must have at least three graphical elements. You must implement the CSS features listed below.
Box Model
Floating Elements
Borders
Remember that this website should be well-organized, informative, and attractive. Use colors and great graphics to make this web page interesting so that you can attract more business.
Rubric
Deliverable
Points

Lab Steps
Part A: Create the Website
    Create the home page.
Create an index.html page using the following:
                                          i.    Box model using div tags and classes to control the positioning to control those div
                                         ii.    Set up at least 4 sections (header, footer, navigation, and main are possible choices) with div tags and class
                                        iii.    Set div tags for the layout using the div tag properties
Add some general information about your major, CIS.
Add pictures. Be sure that you have permission to use the picture.
Include at least three text formatting tags, such as heading level, bold (strong), italics (emphasis), and so forth.
Create three hyperlinks that link to the three pages that have information about the positions you would like to obtain.
Create the three position pages.
Create pages named after the positions you choose (i.e., programmer.html, analyst.html, databaseadmin.html).
Add pictures (at least three) related to the specific job position. Be sure that you have permission to use the pictures.
Include at least three text formatting tags, such as heading level, bold (strong), italics (emphasis), and so forth.

Explanation / Answer

Only HTML code here. You can download the images from google with respect to their name.


index.html
_________________________________________________________________________
<!DOCTYPE html>
<html>
<head>
       <metac charset="utf 8">
       <title>Home</title>
       <link href="style.css" rel="stylesheet">
   </head>
       <div id="header">
       <h1>Computer Information Systems</h1>
       </div>
   <div id="nav-bar">
       <ul>
           <li><a href="index.html">Home</a></li>
           <li><a href="web-developer.html">Web Developer</a></li>
           <li><a href="software-engineer.html">Software Engineer</a></li>
           <li><a href="data-scientist.html">Data Scientist</a></li>
       </ul>
   </div>
   <div id="side-bar-a">
       <aside>
       <p><strong>Degree Information</strong></p>
           <ul>
               <li><a href="https://en.wikipedia.org/wiki/Bachelor_of_Computer_Information_Systems">Bachelor of Computer Information Systems</a></li>
               <br />
               <li><a href="http://www.devry.edu/degree-programs/engineering-information-sciences/computer-information-systems-courses.html">Computer Information Systems Courses</a></li>
           <br />
               <li><a href="http://www.devry.edu/degree-programs/engineering-information-sciences/software-programming-courses.html">Software Programming Specialization</a></li>
           </ul>
       </aside>
   </div>
   <div id="main">
       <h2>What is Computer Information Systems?</h2>
       <p>A bachelor of Computer Information Systems is a bachelor's degree that focuses on practical side of technology. In order to be effective, CIS covers a broadrange of subjects.
       </p>
       <img width="450px" height="325px" alt="robot" src="pictures/robot.jpg">
       <h2>Coursework</h2>
       <p>Some of the classes you will be expecting to take will include a wide range of coursefrom business to technology you will be well versed to and capable of facilitating any needs your organization may ask of you.
       <br />
       <br />
       Some courses you will be expecting to take will include:
       </p>
       <ul>
           <li>Essentials of Accounting</li>
           <li>Introduction to Business Technology</li>
           <li>Logic and Design</li>
           <li>Architecture and Operating Systems with Lab</li>
           <li>Structured Analysis and Design</li>
           <li>Introduction to Database with Lab</li>
           <li>Object-Oriented Analysis and Design</li>
           <li>Computer Applications for Business with Lab</li>
           <li>Project Management</li>
           <li>Principles of Information Systems Security</li>
       </ul>
       <p>Depending on your specialization you can take a more in-depth approach to your career choice of your liking. I chose to specialize in Software Programming.
       <br />
       <br />
       Therefore, I can expect to take additional classes in:</p>
       <ul>
           <li>Software Engineering I</li>
           <li>Data Structures and Algorithms</li>
           <li>Introduction to Mobile Device Programming</li>
           <li>Product, Project, and People Management</li>
           <li>Software Engineering II</li>
           <li>Programming Languages and Advanced Techniques</li>
       </ul>
   <img width="450px" height="550px" alt="web-development" src="pictures/web-development.png">
       <h2>Why this degree?</h2>
       <p>To be honest. I was quite lost as far as what career choice I wanted to pick.
       I went from Mechanical engineering to Civil to Electrical. It wasn't until I took my first programming class that I really started to get into software programming.The complexities of developing software is what really intrigued me. Not saying thatengineering did not provide those same complexities but something was missing. I always had an affinity for computers. So it only made sense that I would get into some sort of computer field. As soon as I started learning how to develop small programs that any computer can read and execute. That is when I became a programming junky.One of the main reasons why I decided to get into this field is because of the virtually limitless possibilities it has. It is easily one of the most versatile and lucrativefields to get into. Oh yeah and the salary is a great bonus too.
       </p>
       </div>
   <div id="side-bar-b">
       <img class="medium-image" alt="High Paying Careers for 2017" src="pictures/front-end-web-developer-tcg-ig.jpg">
       <p><a href="https://www.roberthalf.com/creativegroup/blog/hot-job-front-end-web-developer">Photo</a> by
       <a href="https://www.roberthalf.com/technology">Robert Half Technology</a> and
       <a href="https://www.roberthalf.com/creativegroup">The Creative Group</a></p>
   </div>
   <div id="footer">
   </div>  
   </html>
__________________________________________________________________________________
software-engineer.html
_____________________________________________________________________________
<!DOCTYPE html>
<html>
   <head>
       <metac charset="utf 8">
       <title>Software Engineer</title>
       <link href="style.css" rel="stylesheet">
   </head>
   <div id="header">
       <h1>Software Engineer</h1>
   </div>
   <div id="nav-bar">
   <ul>
           <li><a href="index.html">Home</a></li>
           <li><a href="web-developer.html">Web Developer</a></li>
           <li><a href="software-engineer.html">Software Engineer</a></li>
           <li><a href="data-scientist.html">Data Scientist</a></li>
       </ul>
   </div>
   <div id="side-bar-a">
       <aside>
       <p><strong>Potential Jobs</strong></p>
           <ul>
               <li><a href="https://careers.blizzard.com/en-us/openings/opmp4fwY">Software Engineer, UI</a></li>
</ul>
</aside>
</div>
<div id="main">
<h2>Software Engineer</h2>
<p>Develops information systems by designing, developing, and installing software solutions.</p>
<img width="450px" height="350px" alt="python-1" src="pictures/python-1.jpg">
       <h3>Software Engineer Job Duties</h3>
       <ul>
                   <li>Determines operational feasibility by evaluating analysis, problem definition, requirements, solution development, and proposed solutions.</li>
       <li>Documents and demonstrates solutions by developing documentation, flowcharts, layouts, diagrams, charts, code comments and clear code.</li>
       <li>Prepares and installs solutions by determining and designing system specifications, standards, and programming.</li>
       <li>Improves operations by conducting systems analysis; recommending changes in policies and procedures.</li>
       <li>Obtains and licenses software by obtaining required information from vendors; recommending purchases; testing and approving products.</li>
       <li>Updates job knowledge by studying state-of-the-art development tools, programming techniques, and computing equipment; participating in educational opportunities; reading professional publications; maintaining personal networks; participating in professional organizations.</li>
       <li>Protects operations by keeping information confidential.</li>
       <li>Provides information by collecting, analyzing, and summarizing development and service issues.</li>
       <li>Accomplishes engineering and organization mission by completing related results as needed.</li>
       <li>Develops software solutions by studying information needs; conferring with users; studying systems flow, data usage, and work processes; investigating problem areas; following the software development lifecycle.</li>
       </ul>
       <img width="450px" height="300px" alt="linux-1" src="pictures/linux-1.jpg">
       <p>Software Engineer Skills and Qualifications: </p>
       <p>Analyzing Information , General Programming Skills, Software Design, Software Debugging, Software Documentation, Software Testing, Problem Solving, Teamwork, Software Development Fundamentals, Software Development Process, Software Requirements</p>
       <h2>Who is hiring?</h2>
       <p>One of the many popular employers that are hiring for these positions are:</p>
   <ul class="no-bullets">
           <li><strong>Hewlett-Packard Company</strong></li>
           <li><strong>Microsoft Corp</strong></li>
           <li><strong>Amazon.com Inc</strong></li>
           <li><strong>Cisco Systems Inc</strong></li>
           <li><strong>Intel Corp</strong></li>
           <li><strong>Internation Business Machines (IBM) Corp</strong></li>
       </ul>
       <img width="450px" height="300px" alt="c-sharp-1" src="pictures/c-sharp-1.jpg">
       <h2>What is the job outlook?</h4>
       <p>Employment for Software Engineers is projected to grow <strong>17%</strong> from
       2017 to 2027.</p>
       <h2>How is the work environment?</h4>
       <p>According to Bureau of Labor Statistics, many engineers work for companies that deal with computer systems design and related services or for software publishers.</p>
   </div>
             <div id="side-bar-b">
   <h2>Salary</h2>
   <div><div><a target="_blank" href="http://www.payscale.com/research/US/Job=Software_Engineer_%2f_Developer_%2f_Programmer/Salary" rel="nofollow">Software Engineer / Developer / Programmer</a> (United States)</div>
       <script type="text/javascript" src="http://www.payscale.com/syndication/total_pay_chart.aspx?js=&amp;country=United+States&amp;city=&amp;state=&amp;job=Software+Engineer+%2f+Developer+%2f+Programmer&amp;company=&amp;width=278px&amp;chartTNG=1&amp;reportid=f0e9e6d3&amp;skills=&amp;explvl="></script><table><tr><td>
       <div>Compare your salary.<br /><a href="http://www.payscale.com/wizards/choose.aspx?TK=Embed_Sm" rel="nofollow" target="_blank">Get a FREE salary report &raquo;</a></div></td><td>
       <div><img src="http://www.payscale.com/images/small_logo_transparent.png" alt="PayScale" width="75" height="25" /></div></td></tr></table></div>
   </div>
   <div id="footer">
       </div>  
   </html>
__________________________________________________________________________________
web-developer.html
__________________________________________________________________________________
<!DOCTYPE html>
<html>
   <head>
       <metac charset="utf 8">
       <title>Web Developer</title>
       <link href="style.css" rel="stylesheet">
   </head>
   <div id="header">
       <h1>Web Developer</h1>
   </div>
   <div id="nav-bar">
       <ul>
   <li><a href="index.html">Home</a></li>
   <li><a href="web-developer.html">Web Developer</a></li>
   <li><a href="software-engineer.html">Software Engineer</a></li>
   <li><a href="data-scientist.html">Data Scientist</a></li>
       </ul>
   </div>
   <div id="side-bar-a">
       <aside>
       <p><strong>Potential Jobs</strong></p>
           <ul>
   <li><a href="https://jobs.walgreens.com/job/-/-/1242/3580472?apstr=%26jobBoardId%3D1112&amp;ss=paid">Web Developer</a></li>
   <br />
<li><a href="https://www.indeed.com/viewjob?jk=3f4e993a0ddd3f73&amp;q=Web+Developer&amp;l=Chicago%2C+IL&amp;tk=1b71o556faep2ct9&amp;from=web">Front-End Developer<a></li>
   <br />
<li><a href="https://www.indeed.com/viewjob?jk=f70927f2184a7e02&amp;q=backend+developer&amp;l=Chicago%2C+IL&amp;tk=1b71oeik4aep2fk1&amp;from=web">Node.js/JavaScript Developer</a></li>
   <br />
<li><a href="https://www.indeed.com/viewjob?jk=ff8a77482b2e68be&amp;from=api&amp;q=title%3A(Full+Stack+Developer)&amp;l=Oak+Park,+Illinois&amp;atk=1b74pbv9fag1qb71&amp;sclk=1&amp;sjdu=QwrRXKrqZ3CNX5W-O9jEvXvB_tT-uIVWta9o2Y0FVBdEt8s2AAQk9dsN2-dl2FjFIn0l_EVYHUTqa7ZesSx9aUZriDcxcxHCWEnhC1D3-FTwPLerBAQRW5-N_BpLdewunPSLETNuGDWV-JV3PulmWM6SaYK9UnSOYdMIK5Dm8-DGeqInxlsMwWqHAUUlDKiWEloK8nBoSXEyqdei22QZWMCfj5ldubh3Ej7vHonW0M0eLwgb7_uJETl9CKandGKJje825KD4sqit_kRujqDJzeuMhNcIy5jDzIW5LOfug9k7EvlQ3-r9US_84gYQUr7Alab1BDOdn37jb8ml84f15Q&amp;pub=97194ac1ffdadc3cbd74f495ef13b3370cace3277f6b99df">Full-Stack Developer, IBM</a></li>
       </ul>
   </aside>
</div>
  
<div id="main">
       <h2>Web Developer</h2>
       <p>A Web Developer primary responsibilities is to program and develop working websites.You will also be required to have business knowledge and great communication skills.
                              </p>
<img class="small-image" alt="web-design" src="pictures/web-design.jpg">
   <h3>Web Developer Job Duties</h3>
   <ul>
               <li>Exposure to business stakeholder and executive management</li>
   <li>Having authority in applying your expertise to many interesting techincal problems</li>
   <li>Constant communication with colleagues</li>
   <li>Experience in planning and delivering software platforms used across multiple products and organization units</li>
   <li>Deep expertise and hands on experience with Web Applications and programming languages such as HTML, CSS, JavaScript, JQuery and API's</li>
   <li>Deep functional knowledge or hands on design experience with Web Services (REST, SOAP, etc ..) is needed to be successful in this position</li>
   <li>Strong grasp of security principles and how they apply to E-Commerce applications</li>
   </ul>
       <p>Web Developer Skills and Qualifications:</p>
       <p>JavaScript, JQuery, HTML, HTML5, CSS, CSS3, Web Programming Skills, E-Commerce, Teamwork, Verbal Communication, cross-browser compatibility, Web User Interface Design (UI), Security Principles, Object-Oriented Design, Web Services (REST/SOAP), Multimedia Content Development, API's</p>
       <h4>Who is hiring?</h4>
       <p>One of the many popular employers that are hiring for these positions are:</p>
       <ul class="no-bullets">
       <li><strong>Amazon</strong></li>
       <li><strong>Wells Fargo Bank</strong></li>
       <li><strong>The Walt Disney Company</strong></li>
       </ul>
       <h2>Front-End Developer</h2>
<p>Front-End developers focus their efforts on mainly user interface and design. The appearance of the website is their primary concern. The core of their work is done using languages such as: JaveScript, CSS3, HTML5, frameworks suck as Angular and backbone and libraries like jQuery.
                </p>
<img width="450px" height="320px" alt="web-developer-1" src="pictures/web-developer-1.png">
<h3>Front-End Developer Job Duties</h3>
<ul>
<li>Develop functional and appealing web- and mobile-based applications based on usability</li>
<li>Provide website maintenance and enhancements</li>
<li>Use a combination of markup languages to write web pages</li>
<li>Write functional requirement documents and specifications</li>
<li>Create quality mockups and prototypes on tight timelines</li>
<li>Assist back-end developers with coding and troubleshooting</li>
<li>Create cascading style sheets (CSS) that are consistent across all browsers and platforms</li>
<li>Maintain graphic standards and branding throughout the products interface</li>
<li>Stay up-to-date on emerging technologies</li>
<li>Promote usability best practices</li>
</ul>
<p>Front-End Developer Skills and Qualifications:</p>
<p>Understanding of layout aesthetics and a rigor for programming are prerequisites in the front-end web developer job description. This unique expertise combines user interface know-how with CSS, HTML, JavaScript and jQuery. It comes from in-depth knowledge of web technologies gained from research and professional experience.</p>
       <h2>Who is hiring?</h2>
       <p>One of the many popular employers that are hiring for these positions are:</p>
   <ul class="no-bullets">
       <li><strong>Deloitte Consulting LLP</strong></li>
           <li><strong>Synapse Group, Inc.</strong></li>
           <li><strong>Internation Business Machines (IBM) Corp.</strong></li>
           <li><strong>Accenture</strong></li>
           <li><strong>Google, Inc.</strong></li>
</ul>
       <h2>Back-End Developer</h2>
       <p>Back-End Developers primary focus will be development of all server-side logic,definition and maintenance of the database. Also ensuring high performance and
responsiveness to requests from the front-end. They will also be responsible for integrating the front-end elements built by your coworkers into the application. A basic understanding of front-end technologies is therefore necessary as well.</p>
<img width="450px" height="325px" alt="web-developer-2" src="pictures/web-developer-2.jpg">
<h3>Back-End Developer Job Duties</h3>
<ul>
<li>Integration of user-facing elements developed by a front-end developers with server side logic</li>
<li>Building reusable code and libraries for future use</li>
<li>Optimization of the application for maximum speed and scalability</li>
<li>Implementation of security and data protection</li>
<li>Design and implementation of data storage solutions</li>
</ul>
<p>Back-End Developer Skills and Qualifications:</p>
<p>Basic understanding of front-end technologies and platforms, such as JavaScript, HTML5, and CSS3.Good understanding of server-side CSS preprocessors, such as LESS and SASS.Understanding accessibility and security compliance. User authentication and authorization between multiple systems, servers, and environments. Integration of multiple data sources and databases into one system. Management of hosting environment, including database administration and scaling an application to support load changes. Data migration, transformation, and scripting. Setup and administration of backups.</p>
       <h2>Who is hiring?</h2>
<p>One of the many popular employers that are hiring for these positions are:</p>
<ul class="no-bullets">
<li><strong>Amazon</strong></li>
           <li><strong>Jobspring Partners</strong></li>
           <li><strong>Capital One</strong></li>
           <li><strong>Workbridge Associates</strong></li>
           <li><strong>Smith & Keller</strong></li>
           <li><strong>Walmart eCommerce</strong></li>
       </ul>
       <h2>Full Stack Developer</h2>
       <p>Full-Stack Web Developers are responsible for managing the interchange of data between the server and the users, as well as translating the UI/UX design wireframes to actual code that will produce the visual elements of the application. They will also design the overall architecture of the web application and evolve it to ensure maximum performance and stability.</p>
       <img width="550px" height="250px" alt="web-developer-3" src="pictures/web-developer-3.png">
       <h3>Full Stack Developer Duties</h3>
<ul>
   <li>Design of the overall architecture of the web application</li>
   <li>Implementation of a robust set of services and APIs to power the web application</li>
   <li>Building reusable code and libraries for future use</li>
   <li>Optimization of the application for maximum speed and scalability</li>
   <li>Implementation of security and data protection</li>
   <li>Translation of UI/UX wireframes to visual elements</li>
   <li>Integration of the front-end and back-end aspects of the web application</li>
          
</ul>
<p>Full Stack Developer Skills and Qualifications:</p>
<p>Proficient knowledge of a back-end programming language in one or more: PHP, Python, Ruby, Java, .NET, JavaScript etc. Understanding differences between multiple delivery platforms (such as mobile vs, desktop), and optimizing output to match the specific platform. Good understanding of server-side templating languages such as Jade, EJS, Jinja, etc. depending on your technology stack. Good understanding of server-side CSS preprocessors such as Stylus, Less, Sass etc. depending on your technology stack. Creating database schemas that represent and support business processes.Data migration, transformation, and scripting.</p>
       <h2>Who is hiring?</h2>
   <p>One of the many popular employers that are hiring for these positions are:</p>
   <ul class="no-bullets">
           <li><strong>ICF International</strong></li>
           <li><strong>Wells Fargo Bank</strong></li>
           <li><strong>The Walt Disney Company</strong></li>
           <li><strong>Kaiser Permanente</strong></li>
           <li><strong>Dealersocket</strong></li>
           <li><strong>Hewlett Packard Enterprise</strong></li>
       </ul>
       <h2>What is the job outlook?</h4>
       <p>Employment for web developers is projected to grow <strong>27%</strong> from2017 to 2027.</p>
       <h2>How is the work environment?</h4>
       <p>According to Bureau of Labor Statistics, 1 in 7 web developers worked from home.The traditional workers worked in typical computer systems design and related services industry</p>
   </div>
<div id="side-bar-b">
<h2>Salary</h2>
<!-- Web Developer average Salary -->
<div>
       <div><a target="_blank" href="http://www.payscale.com/research/US/Job=Web_Developer/Salary" rel="nofollow">Web Developer</a> (United States)</div>
       <script type="text/javascript" src="http://www.payscale.com/syndication/total_pay_chart.aspx?js=&amp;country=United+States&amp;city=&amp;state=&amp;job=Web+Developer&amp;company=&amp;width=278px&amp;chartTNG=1&amp;reportid=414790d3&amp;skills=&amp;explvl="></script>
       <table><tr><td><div>Compare your salary.<br /><a href="http://www.payscale.com/wizards/choose.aspx?TK=Embed_Sm" rel="nofollow" target="_blank">Get a FREE salary report &raquo;</a></div></td><td>
       <div><img src="http://www.payscale.com/images/small_logo_transparent.png" alt="PayScale" width="75" height="25" /></div></td></tr></table></div>
      
       <!-- Front-End Web Developer average Salary -->
       <div>
       <div><a target="_blank" href="http://www.payscale.com/research/US/Job=Front_End_Developer_%2f_Engineer/Salary" rel="nofollow">Front End Developer / Engineer</a> (United States)</div>
       <script type="text/javascript" src="http://www.payscale.com/syndication/total_pay_chart.aspx?js=&amp;country=United+States&amp;city=&amp;state=&amp;job=Front+End+Developer+%2f+Engineer&amp;company=&amp;width=278px&amp;chartTNG=1&amp;reportid=f2400bf1&amp;skills=&amp;explvl="></script>
       <table><tr><td><div>Compare your salary.<br /><a href="http://www.payscale.com/wizards/choose.aspx?TK=Embed_Sm" rel="nofollow" target="_blank">Get a FREE salary report &raquo;</a></div></td><td>
       <div><img src="http://www.payscale.com/images/small_logo_transparent.png" alt="PayScale" width="75" height="25" /></div></td></tr></table></div>
      
       <!-- Back-End Developer average Salary -->
       <div>
       <div><a target="_blank" href="http://www.payscale.com/research/US/Job=Back_End_Developer%2f_Engineer/Salary" rel="nofollow">Back End Developer/ Engineer</a> (United States)</div>
       <script type="text/javascript" src="http://www.payscale.com/syndication/total_pay_chart.aspx?js=&amp;country=United+States&amp;city=&amp;state=&amp;job=Back+End+Developer%2f+Engineer&amp;company=&amp;width=278px&amp;chartTNG=1&amp;reportid=3fe770df&amp;skills=&amp;explvl="></script>
       <table><tr><td><div>Compare your salary.<br /><a href="http://www.payscale.com/wizards/choose.aspx?TK=Embed_Sm" rel="nofollow" target="_blank">Get a FREE salary report &raquo;</a></div></td><td>
       <div><img src="http://www.payscale.com/images/small_logo_transparent.png" alt="PayScale" width="75" height="25" /></div></td></tr></table></div>
      
       <!-- Full-Stack Developer average Salary -->
       <div>
       <div><a target="_blank" href="http://www.payscale.com/research/US/Job=Full_Stack_Developer/Salary" rel="nofollow">Full Stack Developer</a> (United States)</div>
       <script type="text/javascript" src="http://www.payscale.com/syndication/total_pay_chart.aspx?js=&amp;country=United+States&amp;city=&amp;state=&amp;job=Full+Stack+Developer&amp;company=&amp;width=278px&amp;chartTNG=1&amp;reportid=07c4c15d&amp;skills=&amp;explvl="></script><table><tr><td>
       <div>Compare your salary.<br /><a href="http://www.payscale.com/wizards/choose.aspx?TK=Embed_Sm" rel="nofollow" target="_blank">Get a FREE salary report &raquo;</a></div></td><td>
       <div><img src="http://www.payscale.com/images/small_logo_transparent.png" alt="PayScale" width="75" height="25" /></div></td></tr></table></div>
       </div>
   <div id="footer">
</div>  
  
</html>
______________________________________________________________________________
data-scientist.html
____________________________________________________________________________
<!DOCTYPE html>
<html>
   <head>
       <metac charset="utf 8">
       <title>Data Scientist</title>
       <link href="style.css" rel="stylesheet">
   </head>
  
<div id="header">
   <h1>Data Scientist</h1>
   </div>
   <div id="nav-bar">
       <ul>
   <li><a href="index.html">Home</a></li>
   <li><a href="web-developer.html">Web Developer</a></li>
   <li><a href="software-engineer.html">Software Engineer</a></li>
   <li><a href="data-scientist.html">Data Scientist</a></li>
   </ul>
   </div>
   <div id="side-bar-a">
       <aside>
       <p><strong>Potential Jobs</strong></p>
           <ul>
               <li><a href="https://www.indeed.com/viewjob?jk=19f1f4f36a850650&amp;q=data+scientist&amp;l=Chicago%2C+IL&amp;tk=1b71op8riaep2djj&amp;from=web">Quantitative Developer</a></li>
           </ul>
       </aside>
   </div>
   <div id="main">
   <h2>Data Scientist</h2>
   <p>Data Scientist will help discover the information hidden in vast amounts of data, and help us make smarter decisions to deliver even better products. Their primary focus will be in applying data mining techniques, doing statistical analysis, and building high quality prediction systems integrated with our products.</p>
       <img width="550px" height="350px" alt="data-1" src="pictures/data-1.jpg">
       <h3>Data Scientist Job Duties</h3>
       <ul>
       <li>Selecting features, building and optimizing classifiers using machine learning techniques</li>
       <li>Data mining using state-of-the-art methods.</li>
       <li>Extending companys data with third party sources of information when needed.</li>
       <li>Enhancing data collection procedures to include information that is relevant for building analytic systems.</li>
       <li>Processing, cleansing, and verifying the integrity of data used for analysis.</li>
       <li>Doing ad-hoc analysis and presenting results in a clear manner.</li>
       <li>Creating automated anomaly detection systems and constant tracking of its performance</li>
       </ul>
       <img width="550px" height="550px" alt="data-3" src="pictures/data-3.png">
       <p>Data Scientist Skills and Qualifications: </p>
       <p>Excellent understanding of machine learning techniques and algorithms,such as k-NN, Naive Bayes, SVM, Decision Forests, etc. Experience with common data science toolkits, such as R, Weka, NumPy, MatLab, etc. Excellence in at least one of these is highly desirable. Experience with data visualisation tools, such as D3.js, GGplot, etc.
Proficiency in using query languages such as SQL, Hive and Pig. Experience with NoSQL databases, such as MongoDB, Cassandra and HBase. Good applied statistics skills, such as distributions, statistical testing, regression, etc.</p>
       <h2>Who is hiring?</h2>
       <p>One of the many popular employers that are hiring for these positions are:</p>
<ul class="no-bullets">
           <li><strong>Booz, Allen, and Hamilton</strong></li>
           <li><strong>Internation Business Machines (IBM) Corp</strong></li>
           <li><strong>Amazon.com Inc</strong></li>
           <li><strong>American Express Co.</strong></li>
           <li><strong>Microsoft Corp</strong></li>
           <li><strong>Explorys</strong></li>
       </ul>
       <img width="550px" height="350px" alt="data-2" src="pictures/data-2.jpg">
       <h2>What is the job outlook?</h4>
       <p>Employment for Software Engineers is projected to grow <strong>11%</strong> from 2017 to 2027. They are likely to have high job prospects since the demand for these highly skilled workers are so high.</p>
       <h2>How is the work environment?</h4>
       <p>According to Bureau of Labor Statistics, data scientists worked full-time; with 1 and 10 working more than 40 hours per week.</p>
       </div>
   <div id="side-bar-b">
   <h2>Salary</h2>
   <div>
   <div><a target="_blank" href="http://www.payscale.com/research/US/Job=Data_Scientist%2c_IT/Salary" rel="nofollow">Data Scientist, IT</a> (United States)</div>
       <script type="text/javascript" src="http://www.payscale.com/syndication/total_pay_chart.aspx?js=&amp;country=United+States&amp;city=&amp;state=&amp;job=Data+Scientist%2c+IT&amp;company=&amp;width=278px&amp;chartTNG=1&amp;reportid=80ae82a8&amp;skills=&amp;explvl="></script><table><tr><td>
       <div>Compare your salary.<br /><a href="http://www.payscale.com/wizards/choose.aspx?TK=Embed_Sm" rel="nofollow" target="_blank">Get a FREE salary report &raquo;</a></div></td><td>
       <div><img src="http://www.payscale.com/images/small_logo_transparent.png" alt="PayScale" width="75" height="25" /></div></td></tr></table></div>
       </div>
<div id="footer">
</div>  
</html>
_______________________________________________________________________________
style.css
_____________________________________________________________________________

/* Give our header a text alignment */
#header {
   text-align: center;
}
/* Give the entire page the font family Georgia */
body {
   font-family: georgia;
   background-color: #b3b3cc;  
}
/* Give the nav bar a border and list style to remove the bullets */
#nav-bar ul{
   list-style: none;
   padding: 1em 0;
   border-top: 2px solid black;
   border-bottom: 2px solid black;
}
#nav-bar li {
   display: inline;
   padding: 0 1em;
   border-right: 2px solid black;
}
#nav-bar a {
   font-weight: bold;
   color: blue;
   text-decoration: none;
}
#nav-bar a:active {
   color: red;
   text-underline: underline;
}
#main {
   padding-left: 20px;
   padding-right: 20px;
   border-left: 2px solid black;
   border-right: 2px solid black;
   float: left;
   width: 575px;
}
#side-bar-a {  
}
#side-bar-b {
   float: left;
   width: 300px;
   padding-left: 50px;  
}
#side-bar-b a {
   text-decoration: none;
   color: #0066cc;  
}
.small-image {
   height: 150px;
   width: 200px;
}
.medium-image {
   height: 550px;
   width: 400px;
}
aside {
   margin-right: 10px;
   float: left;
   height: 400px;
   width: 200px;  
}
aside ul {
   list-style: none;
   padding: 0 1em;  
}
aside a {
   text-decoration: none;
}
.no-bullets {
   list-style: none;
}

#footer {
   clear: both;
   postion: bottom;
}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote