-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (125 loc) · 5.65 KB
/
index.html
File metadata and controls
146 lines (125 loc) · 5.65 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Magdalena Paluch - Web Developer</title>
<link href="https://fonts.googleapis.com/css?family=Saira+Condensed:400,700|Saira:300&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="welcome">
<p>Welcome!</p>
<h1>John Doe</h1>
<h2>Front-End Developer</h2>
<button>My portfolio</button>
</div>
<img src="images/photo1.png" alt="">
</header>
<section class='section1 clearfix'>
<h1>I create awesome Internet web applications</h1>
<div class="feature">
<img src="images/services1.png" alt="technologies">
<h2>Using the latest standards</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat.</p>
</div>
<div class=" feature">
<img src="images/services2.png" alt="technologies">
<h2>Optimized for search engines</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat.</p>
</div>
<div class=" feature clearfix">
<img src="images/services3.png" alt="technologies">
<h2>Good looking on mobile devices</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat.</p>
</div>
</section>
<section class="projects">
<h1>My projects</h1>
<div class="feature">
<img src="images/portfolio1.jpg" alt="">
<div class="clearfix">
<h2>Project name</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim venia</p>
</div>
</div>
<div class="feature">
<div class="clearfix">
<h2>Project name</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim venia</p>
</div>
<img src="images/portfolio2.jpg" alt="">
</div>
<div class="feature">
<img src="images/portfolio3.jpg" alt="">
<div class="clearfix">
<h2>Project name</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim venia</p>
</div>
</div>
<div class="feature">
<div class="clearfix">
<h2>Project name</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut
laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim venia</p>
</div>
<img src="images/portfolio4.jpg" alt="">
</div>
</section>
<section class="motto">
<div class="bg">
<h1>My motto</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. At quibusdam, totam suscipit architecto quidem
numquam odio aliquid ut magni neque nisi accusamus tempora distinctio culpa maiores placeat ipsam,
corporis harum.</p>
<p class="podpis">Steve Jobs</p>
</div>
</section>
<section class="hobby clearfix">
<h1>What I do in my spare time</h1>
<div class="feature">
<h2>climbing in the mountains</h2>
</div>
<div class="feature">
<h2>travelling</h2>
</div>
<div class="feature">
<h2>programming</h2>
</div>
<div class="feature">
<h2>cooking</h2>
</div>
</section>
<section class="formularz_kontakt clearfix">
<h1>Contact me</h1>
<form class="formularz">
<input type="text" placeholder="Your name">
<input type="text" placeholder="e-mail">
<textarea placeholder="Your message"></textarea>
<button>Send</button>
</form>
<div class="kontakt clearfix">
<div class="social clearfix"><img src="images/contact1.png" alt="">
<span>johndoe</span></div>
<div class="social clearfix"> <img src="images/contact2.png" alt="">
<span>+420 000 000 000</span></div>
<div class="social clearfix"> <img src="images/contact4.png" alt="">
<span>twitter</span></div>
<div class="social clearfix"> <img src="images/contact3.png" alt="">
<span>facebook</span></div>
<div class="social clearfix"><img src="images/contact5.png" alt="">
<span>linkedin</span></div>
</div>
</section>
<footer>John Doe 2019</footer>
</body>
</html>