-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (46 loc) · 1.05 KB
/
index.html
File metadata and controls
57 lines (46 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>This is javascript two!!!.</h1>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
Home Page
</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<h1> Home Page </h1>
<h2> Cars </h2>
<% cars.forEach(function(car) { %>
<li><a href="detail?model=<%= car.model %>"><%= car.model %></a></li>
<% }); %>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Detail</title>
<link rel="stylesheet" type="text/css" href="/styles.css">
</head>
<body>
<h1>Item Details</h1>
<% if (item) { %>
<h2><%= item.name %></h2>
<p>Model: <%= item.model %></p>
<p>Color: <%= item.color %></p>
<p>Price: <%= item.price %></p>
<% } else { %>
<p>Item not found.</p>
<% } %>
<a href="/">Back to Home</a>
</body>
</html>