forked from LuanDuka/javascript-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05-variables.html
More file actions
62 lines (52 loc) · 1.43 KB
/
Copy path05-variables.html
File metadata and controls
62 lines (52 loc) · 1.43 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
<<<<<<<< HEAD:javascript-course/Projects/javascript-course/05-variables.html
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Variables</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<p>
Adults Plain Cotton T-shirt
</p>
<p>
Price: $7.99
</p>
<button title="Good job!" class="addToCart-button" onclick="addClicked()">
Add to cart
</button>
<button title="Good job!" class="buyNow-button" onclick="buyClicked()">
Buy now
</button>
<!-- This is a comment. -->
<script src="js/javascrip.js"></script>
</body>
========
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Variables</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<p>
Adults Plain Cotton T-shirt
</p>
<p>
Price: $7.99
</p>
<button title="Good job!" class="addToCart-button" onclick="addClicked()">
Add to cart
</button>
<button title="Good job!" class="buyNow-button" onclick="buyClicked()">
Buy now
</button>
<!-- This is a comment. -->
<script src="js/javascrip.js"></script>
</body>
>>>>>>>> 45f1e137193a2597b3bb0497b0b27107c88f6dbc:Projects/javascript-course/05-variables.html
</html>