-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.73 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is anexercise is to test ability to build with HTML using semantically appropriate elements, and style them with CSS.">
<title>International Association of Business Communicators</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/normalize.css" type="text/css">
<link rel="stylesheet" href="styles/style.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<a class="logo" href=""><img src="images/iabc-logo.png" alt="IABC Logo" title="IABC Logo"></a>
<a class="icon" href="" ><img src="images/icon-search.png" alt="Search" title="Search"></a>
<a class="icon" href="https://twitter.com/"><img src="images/icon-twitter.png" alt="Twitter" title="Twitter"></a>
<a class="icon" href="https://ca.linkedin.com/"><img src="images/icon-linkedin.png" alt="Linkedin" title="Linkedin"></a>
</header>
<nav>
<ul>
<li><a href="">RESOURCES</a></li>
<li><a href="">EVENTS</a></li>
<li><a href="">MEMBERSHIP</a></li>
<li><a href="">ABOUT US</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</nav>
<main>
<section class="mainPic">
<img src="images/IABC_GoldQuill_IABCslider.jpg" alt="">
</section>
<aside>
<h1> IABC News</h1>
<a>Enter IABC’s Member Month social media contest.</a>
<a>IABC Member Month: Expand Your Impact</a>
<a>2019 Gold Quill Awards program call for entries now open</a>
<a>ABC partners with IC Kollectif to launch a global report focused on communication</a>
</aside>
<article>
<h1>Overview of IABC</h1>
<h2>Joining IABC Is An Investment In Your Career</h2>
<p>The International Association of Business Communicators (IABC) is a global network of communication professionals committed to improving organizational effectiveness through strategic communication. Established in 1970, IABC serves members in more than 70 countries for networking, career development and personal growth.
<br><br>
Learn more about what we offer for students, professionals and corporate groups who want to take their business communication skills to the next level.
</p>
</article>
<section class="paidAds">
<a href=""><img src="images/icm-banner.jpg" alt=""></a>
</section>
</main>
<footer>
<p>
© 2018 International Association of Business Communicators
<br>
155 Montgomery St., Suite 1210, San Francisco, CA 94104 U.S.
<br>
+1415.544.4700
</p>
</footer>
</body><!--closing <body> tag-->
</html><!--closing html tag-->