forked from YigitBalik/AaltoAI-Hack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deneme.html
121 lines (110 loc) · 3.09 KB
/
deneme.html
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Business Laptops Proposal</title>
<style>
body {
font-family: 'Arial', sans-serif;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 10px;
margin-bottom: 20px;
border-radius: 8px 8px 0 0;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
.logo {
display: block;
margin: 0 auto;
margin-bottom: 20px;
}
.center {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Basic Business Laptops Proposal</h1>
</div>
<img class="logo" src="logo.png" alt="Company Logo">
<h2>Product Options:</h2>
<table>
<tr>
<th>Model Name</th>
<th>Processor</th>
<th>RAM(GB)</th>
<th>SSD(GB)</th>
<th>Display Size (inches)</th>
<th>Operating System</th>
<th>Price</th>
</tr>
<tr>
<td>Asus VivoBook 14 OLED X1405ZA-KM311WS Laptop</td>
<td>12th Gen Core i3</td>
<td>8</td>
<td>512</td>
<td>14.0</td>
<td>Windows</td>
<td>51990</td>
</tr>
<tr>
<td>Asus VivoBook 15 X515EA-EJ522WS Laptop</td>
<td>11th Gen Core i5</td>
<td>8</td>
<td>512</td>
<td>15.6</td>
<td>Windows</td>
<td>46990</td>
</tr>
<tr>
<td>Asus VivoBook 15 2022 X515JA-EJ592WS Laptop</td>
<td>10th Gen Core i5</td>
<td>8</td>
<td>512</td>
<td>15.6</td>
<td>Windows</td>
<td>44990</td>
</tr>
</table>
<div class="center">
<h3>Original Pricing</h3>
<p>Total based on unit price x quantity: <strong>143970</strong></p>
<h3>Discounted Pricing</h3>
<p>Total based on discounted unit price x quantity: <strong>138718.50</strong></p>
</div>
</div>
</body>
</html>
```