-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurface.html
More file actions
55 lines (50 loc) · 1.49 KB
/
surface.html
File metadata and controls
55 lines (50 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Surface</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="surface">
<main class="main">
<div>
<h1 class="page-head">Microsoft Laptops</h1>
<img class="img-other" src="images/Surface.jpg" alt="dell inspiron 7000">
</div>
<div class="table">
<h2 class="list-title"><strong>Microsoft Surface Pro 3</strong></h2>
<h3> Features </h3>
<table border="4">
<tr>
<th>Item</th>
<th>Description</th>
</tr>
<tr>
<td>Weight</td>
<td>1.7 lbs</td>
</tr>
<tr>
<td>Processor Type</td>
<td>Intel Core i5</td>
</tr>
<tr>
<td>Memory</td>
<td>4 GB</td>
</tr>
<tr>
<td>Hard Drive</td>
<td>128 GB SSD</td>
</tr>
<tr>
<td>Screen Size</td>
<td>11.3' Touch Screen</td>
</tr>
<tr>
<td>Operating System</td>
<td>Windows 10</td>
</tr>
</table>
</div>
<p><a class="back-home" href="index.html"><strong> << Home</strong></a></p>
</main>
</body>
</html>