This repository was archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
88 lines (88 loc) · 6.69 KB
/
about.html
File metadata and controls
88 lines (88 loc) · 6.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Us</title>
<link rel="shortcut icon" href="icon-256.png" type="image/png" sizes="256x256">
<link rel="shortcut icon" href="icon-16.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<script src="scripts/mobile_menu.js"></script>
</head>
<body>
<div id="header">
<table id="desktop_table">
<tr>
<td><a href="index.html"><span id="logo"></span></a></td>
<td></td>
<td><a href="products.html"><span>Products</span></a></td>
<td><a href="about.html"><span id="active_tab">About us</span></a></td>
</tr>
</table>
<table id="mobile_table">
<tr>
<td><a href="index.html"><span id="logo_img"></span></a></td>
<td id="tb_mobile"><a><span id="menu_img"></span></a></td>
</tr>
</table>
<br><br>
</div>
<div id="mobile_menu">
<table>
<tr>
<td><a><span id="close_mobile_menu"></span></a></td>
</tr>
<tr>
<td id="products_link"><a href="products.html">Products</a></td>
</tr>
<tr>
<td><a id="about_link" href="about.html">About us</a></td>
</tr>
</table>
</div>
<div id="content">
<table>
<tr>
<td>
<h1>◑ Who are we?</h1>
<p>
<img src="images/ibm-office.jpg" class="right-img" width="450" align="right">
International Business Machines Corporation (IBM) is an American multinational information technology company headquartered in Armonk, New York, with operations in over 170 countries. The company began in 1911, founded in Endicott, New York, as the Computing-Tabulating-Recording Company (CTR) and was renamed "International Business Machines" in 1924.
<br><br>
IBM produces and sells computer hardware, middleware and software, and provides hosting and consulting services in areas ranging from mainframe computers to nanotechnology. IBM is also a major research organization, holding the record for most U.S. patents generated by a business (as of 2019) for 26 consecutive years. Inventions by IBM include the automated teller machine (ATM), the floppy disk, the hard disk drive, the magnetic stripe card, the relational database, the SQL programming language, the UPC barcode, and dynamic random-access memory (DRAM). The IBM mainframe, exemplified by the System/360, was the dominant computing platform during the 1960s and 1970s.
<br><br>
IBM has continually shifted business operations by focusing on higher-value, more profitable markets. This includes spinning off printer manufacturer Lexmark in 1991 and the sale of personal computer (ThinkPad/ThinkCentre) and x86-based server businesses to Lenovo (in 2005 and 2014, respectively), and acquiring companies such as PwC Consulting (2002), SPSS (2009), The Weather Company (2016), and Red Hat (agreement announced in October 2018, actual acquisition to be in the second half of 2019). Also in 2014, IBM announced that it would go "fabless", continuing to design semiconductors, but offloading manufacturing to GlobalFoundries.
</p>
</td>
</tr>
<tr>
<td>
<h1>◕ About Our Employees</h1>
<p>
<img src="images/ibm-team.jpg" class="left-img" width="450" align="left">
IBM has several leadership development and recognition programs to recognize employee potential and achievements. For early-career high potential employees, IBM sponsors leadership development programs by discipline (e.g., general management (GMLDP), human resources (HRLDP), finance (FLDP)). Each year, the company also selects 500 IBMers for the IBM Corporate Service Corps (CSC), which has been described as the corporate equivalent of the Peace Corps and gives top employees a month to do humanitarian work abroad. For certain interns, IBM also has a program called Extreme Blue that partners top business and technical students to develop high-value technology and compete to present their business case to the company's CEO at internship's end.
<br><br>
The company also has various designations for exceptional individual contributors such as Senior Technical Staff Member (STSM), Research Staff Member (RSM), Distinguished Engineer (DE), and Distinguished Designer (DD). Prolific inventors can also achieve patent plateaus and earn the designation of Master Inventor. The company's most prestigious designation is that of IBM Fellow. Since 1963, the company names a handful of Fellows each year based on technical achievement. Other programs recognize years of service such as the Quarter Century Club established in 1924, and sellers are eligible to join the Hundred Percent Club, composed of IBM salesmen who meet their quotas, convened in Atlantic City, New Jersey.
<br><br>
Each year, the company also selects 1,000 IBMers annually to award the Best of IBM Award, which includes an all-expenses paid trip to the awards ceremony in an exotic location. IBM's culture has evolved significantly over its century of operations. In its early days, a dark (or gray) suit, white shirt, and a "sincere" tie constituted the public uniform for IBM employees. During IBM's management transformation in the 1990s, CEO Louis V. Gerstner, Jr. relaxed these codes, normalizing the dress and behavior of IBM employees.
</p>
<br>
</td>
</tr>
</table>
</div>
<div id="footer">
<table>
<tr>
<td>
<hr>
<center>
<p>by Stefan Fisher and Shtraikher.sh<br>28.10.2019</p>
</center>
<hr>
</td>
</tr>
</table>
</div>
</body>
</html>