-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
175 lines (141 loc) · 6.95 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Portfolio</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="navbar">
<div class="navbar__container">
<div class="navbar__toggle" id="mobile-menu" aria-label="click to open menu and select which section you want to see">
<i class="fas fa-bars"></i>
</div>
<a href="#about-page" id="navbar__logo" aria-label="click here to read about this person">
Name
</a>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="#home-page" class="navbar__link" aria-label="click here to go back to top">
Home
</a>
</li>
<li class="navbar__item">
<a href="#work-page" class="navbar__link" aria-label="click here to see what work he has done ">
Work
</a>
</li>
<li class="navbar__item">
<a href="#about-page" class="navbar__link" aria-label="click here to read about this person">
About
</a>
</li>
<li class="navbar__item">
<a href="#contact-page" class="navbar__link" aria-label="click here to get in touch">
Contact
</a>
</li>
</ul>
</div>
</header>
<div class="scroller">
<section id="home-page">
<div class="hero">
<img src="assets/hero-banner.jpg" class="hero__image" alt="white and gray color lines background image">
<h1 class="hero__portfolio">
Portfolio
</h1>
<h2 class="hero__name">
Name
</h2>
<h3 class="hero__quote">
"Art is anything you can get away with"
<h3 class="hero__quote--person">
- ...
</h3>
</h3>
</div>
</section>
<section id="work-page">
<div class="work">
<h2 class="work__title">
WORK SHOWCASE
</h2>4
<img src="assets/bilde1.jpg" class="work__background" alt="three faces where middle face eye is covered by hands, wall painting">
<main class="work__galleryshow">
<!-- rendering images from gallery.js
<figure class="work__figure">
<img src="assets/bilde2.jpg" alt="Cosmic" class="work__image">
<figcaption class="work__caption">
Cosmic
</figcaption>
</figure>
-->
</main>
</div>
</section>
<section id="about-page">
<div class="about">
<div class="about__image">
<img src="assets/about_background.jpeg" class="about__image" alt="image about a person looking at paintings hanging in the walls">
</div>
<div class="about__container">
<h2 class="about__title">
MY JOURNEY
</h2>
<p class="about__text">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quis quas est maiores. Ipsa tempora possimus ut ex ad laborum ducimus beatae maxime sint dolor obcaecati, quidem odit quibusdam nobis corrupti!
</p>
</div>
</div>
</section>
<section id="contact-page">
<div class="contact">
<img src="assets/thanks.jpeg" class="contact__banner" alt="thank you banner in multiple languages">
<form class="contact__form">
<fieldset class="contact__field">
<legend class="contact__title">
Get in touch
</legend>
<label class="contact__label-name" for="name">
Name
</label>
<input class="contact__input-name" type="text" name="name" value="" placeholder="Name" autocomplete="on" />
<label class="contact__label-mail" for="e-post">
mail-address
</label>
<input class="contact__input-mail" type="text" name="mail" value="" placeholder="mail-address" autocomplete="on" />
<label class="contact__label-message">
Message
</label>
<textarea class="contact__input-message" name="message" placeholder="Message" value="" type="text"></textarea>
</fieldset>
</form>
</div>
</section>
<footer class="footer">
<div class="footer__information">
<ul class="footer__list">
<li class="footer__item">
<i class="fab fa-linkedin fa-3x" aria-label="click here to open linked in profile"></i>
</li>
<li class="footer__item">
<i class="fab fa-instagram fa-3x" aria-label="click here to open instagram profile"></i>
</li>
<li class="footer__item">
<i class="fab fa-facebook-square fa-3x" aria-label="click here to open facebook"></i>
</li>
</ul>
<h3 class="footer__rigths">
©2021 All rights reserved | Site by ....
</h3>
</div>
</footer>
</div>
<script src="js/gallery.js"></script>
<script src="js/mobile.js"></script>
</body>
</html>