-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (123 loc) · 4.34 KB
/
index.html
File metadata and controls
129 lines (123 loc) · 4.34 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Blog Layout</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<header>
<!-- NAV SECTION -->
<nav role="menubar">
<label for="icon-menu-hamburger">
<input type="checkbox" id="icon-menu-hamburger"/>
<div class="container icon-menu-hamburger">
<div class="menu"></div>
</div>
<ul class="menu-ul">
<li>
<a href="#" role="menuitem">Home</a>
</li>
<li>
<a href="#" role="menuitem">About</a>
</li>
<li>
<a href="#" role="menuitem">Features</a>
</li>
<li>
<a href="#" role="menuitem">Princing</a>
</li>
<li>
<a href="#" role="menuitem">Contact Us</a>
</li>
<li>
<img src="images/search-icon.svg" alt="Icon search" title="Search Image">
</li>
</ul>
</label>
</nav>
</header>
<!-- MY FAVORITES SECTION -->
<section id="my-favorites">
<section role="banner">
<figure>
<img src="images/sf-image.jpg" atl="Image of sanfrancisco bridge" title="Bridge Image">
<figcaption>
My Best Place
<div class="line"></div>
</figcaption>
</figure>
<figure>
<img src="images/fuits-image.jpg" alt="Image with fruits, vegetables and nuts" Title="Food Image">
<figcaption>
My Fav Food
<div class="line"></div>
</figcaption>
</figure>
<figure>
<img src="images/place-image.jpg" alt="Image of a city looks as a New York" title="City Image">
<figcaption>
My Fav Season
<div class="line"></div>
</figcaption>
</figure>
</section>
</section>
<div id="main-content">
<!-- MAIN CONTENT -->
<section id="article" role="article">
<h1>MY TRIP TO AMSTERDAM</h1>
<figure>
<img src="images/blog-image.jpg" alt="Image of a house on Amsterdam" title="House Image">
</figure>
<p>
Amsterdam is one of my favourite cities. After spending a week there.
I feel like I've found a home away from Paris (I'm sorry London but you just don't cut it in terms of prettiness).
And boy I have so much to tell you about my time there!
</p>
<p>
Before heading to the Dutch capital, I did a lot of research, reading a pocket guidebook cover to cover and receiving a few recommendations for places to go.
In truth I don't think I've been more excited about a holiday: it was the first city break my boyfriend and I have been on,
and after almost a year of working solidly. a week away was so appealing.
</p>
</section>
<aside>
<!-- AUTHOR SECTION -->
<section id="author-section" role="complementary">
<h3>
About Me
<span class="line-h3"></span>
</h3>
<img src="images/autor-image.jpeg" alt="Author Photography in black and white color" title="Author Image">
<p>
Hi,<br>
I am Carla W<br>
I am web designer/ developer based in Toronto Canada.<br>
I have a passion for web design and love to create for web and mobile devices.
</p>
</section>
<!-- FORM SECTION -->
<section id="contact-section" role="form">
<h3>
Contact Me
<span class="line-h3"></span>
</h3>
<form>
<label for="email">
<input type="email" name="email" id="email" placeholder="Type your email" aria-required="true" >
</label>
<textarea name="message" placeholder="Text..." aria-required="true" aria-label="Message box" ></textarea>
<button type="submit" name="submit" value="submit" role="button" aria-label="Send Form" >Submit</button>
</form>
</section>
</aside>
</div>
<!-- FOOTER -->
<footer>
Develop by: <span>Carla W.</span>
</footer>
</body>
</html>