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
110 lines (87 loc) · 3.81 KB
/
index.html
File metadata and controls
110 lines (87 loc) · 3.81 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
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
<!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>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-- <div class="container"> -->
<div class="header">
<h2 class="header_title">HELP CHILDREN GET THE FUTURE THEY DESERVE</h2>
<p class="header-desc">Lorem, ipsum dolor.</p>
<div class="headerfirst">
<a href="#">
<img class="header_logo" src="stc-logo.svg" alt="Save The Chidren Logo">
</a>
<nav class="header-nav">
<ul class="navigation_list">
<li class="navigation_item">
<a class="navigation_link" href="#">What We Do</a>
</li>
<li class="navigation_item">
<a class="navigation_link" href="#">About</a>
</li>
<li class="navigation_item">
<a class="navigation_link" href="#">News & Stories</a>
</li>
<li class="navigation_item">
<a class="navigation_link" href="#">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="content">
<div class="main">
<!-- <div class="img"> -->
<!-- <img class="main_img" src="/home/coder/Documents/CYF/HTML-CSS-Coursework-Week1/Save-The-Children-logo.jpg" alt="save the children photo"> -->
<div class="article">
<div class="article1">
<h3 class="article_title">HOW TO HELP SYRIA & TURKEY</h3>
<p class="article_summary"> A DEADLY EARTHQUAKE HAS KILLED 19,000+ IN TURKEY, SYRIA</p>
<a class="arrow_right" href="#">
Learn more
</a>
</div>
<div class="article2">
<h3 class="article_title">AFGHANISTAN</h3>
<p class="article_summary"> HOW THE BAN ON FEMALE NGO WORKERS WILL IMPACT CHILDREN</p>
<a class="arrow_right" href="#">
Learn more
</a>
</div>
<div class="article3">
<h3 class="article_title">UKRAINE</h3>
<p class="article_summary">MILLIONS OF DISPLACED CHILDREN BRACE FOR FREEZING COLD WINTER</p>
<a class="arrow_right" href="#">
Learn more
</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer_content">
<p>
<strong>In the UK and around the world, we make sure children keep safe, healthy and learning</strong>
</p>
<p>With children, for children, we change the future for good.</p>
</div>
</div>
<!-- </div> -->
</body>
</html>