forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (68 loc) · 3.62 KB
/
index.html
File metadata and controls
68 lines (68 loc) · 3.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<div class="header">
<h2>Forex Market</h2>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>USDJPY Analysis</h2>
<h5>Dec 1, 2020</h5>
<div class="img1" style="height:200px;"></div>
<p>USD/JPY is the forex ticker that shows the value of the US Dollar against the Japanese Yen. It tells traders how many Yen are needed to buy a US Dollar.</p>
<p>The Dollar-Yen is one of the most traded forex pairs – second only to EUR/USD – and is a benchmark for Asian economic health and even the global economy. View the live Dollar-Yen rate with the USD/JPY chart and improve your technical and fundamental analysis with the latest USD/JPY forecast, news and analysis.</p>
</div>
<div class="card">
<h2>GBPUSD Analysis</h2>
<h5>Dec 3, 2020</h5>
<div class="img2" style="height:200px;"></div>
<p>GBP/USD is the forex ticker that shows the value of the British Pound against the US Dollar. It tells traders how many US Dollars are needed to buy a British Pound.</p>
<p>The Pound-Dollar is one of the oldest and most widely traded currency pairs in the world. Follow the live GBP/USD rate with the chart and keep up to date with Pound-Dollar news and analysis. Plan your trades with the GBP/USD forecast and key pivot points data and support and resistance levels.</p>
</div>
<div class="card">
<h2>USDZAR Analysis</h2>
<h5>Dec 6, 2020</h5>
<div class="img5" style="height:200px;"></div>
<p>USD/ZAR is the forex ticker that shows the value of the US Dollar against the South African Rand. It tells traders how many US Dollars are needed to buy a US Dollar.</p>
<p>The Dollar-Zar is one of the oldest and most widely traded currency pairs in the world. Follow the live GBP/USD rate with the chart and keep up to date with Dollar-Rand news and analysis. Plan your trades with the USD/ZAR forecast and key pivot points data and support and resistance levels.</p>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<h2>About Us</h2>
<p>The foreign exchange market is where currencies are traded. Currencies are important to most people around the world, whether they realize it or not, because currencies need to be exchanged in order to conduct foreign trade and business.</p>
</div>
<div class="card">
<h3>Popular Post</h3>
<div class="img3" style="height: auto;"></div>
<br>
<div class="img4" style="height: auto;"></div>
<br>
</div>
<div class="card">
<h3>Social links</h3>
<p><a href="https://twitter.com/login?lang=en">Twitter</a><br><br><a href="https://www.facebook.com/">Facebook</a><br></p>
</div>
</div>
</div>
<div class="footer">
<h2>Footer</h2>
</div>
</body>
</html>