Skip to content

Commit 6303729

Browse files
committed
first version of project
1 parent e286d80 commit 6303729

File tree

3 files changed

+124
-2
lines changed

3 files changed

+124
-2
lines changed

index.html

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,47 @@
33
<head>
44
<meta charset="UTF-8">
55
<title>Portfolio K.T</title>
6+
<link rel="stylesheet" href="reset.css">
7+
<link rel="stylesheet" href="styles.css">
68
</head>
79
<body>
8-
<h1>Hello World</h1>
9-
10+
<div class="main_container">
11+
<header>
12+
<button type="button">Home</button>
13+
<button type="button">About</button>
14+
<button type="button">Portfolio</button>
15+
<button type="button">Contact</button>
16+
</header>
17+
<div class="portfolio_screen">
18+
<h1>Portfolio K.T</h1>
19+
<div class="buttons">
20+
<a target="_blank" href="https://twitter.com/ZeRG_O"><button id="twitter_button" class="button" type="button"><i class="fa fa-twitter" aria-hidden="true"></i> twitter</button></a>
21+
<a target="_blank" href="https://github.com/trescins"><button id="github_button" class="button" type="button"><i class="fa fa-github" aria-hidden="true"></i> GitHub</button></a>
22+
<a target="_blank" href="https://www.linkedin.com/in/kamil-trescinski/"><button id="linkedin_button" class="button" type="button"><i class="fa fa-linkedin-square" aria-hidden="true"></i> LinkedIn</button></a>
23+
<a target="_blank" href="https://www.freecodecamp.org/fccb4dc1315-e2c8-463d-bf1e-920d303d3274"><button id="freeCodeCamp_button" class="button" type="button"><i class="fa fa-free-code-camp" aria-hidden="true"></i> freeCodeCamp</button></a>
24+
</div>
25+
</div>
26+
<div class="self-description_screen">
27+
<h2>Self-Description</h2>
28+
<p>text of self-description</p>
29+
<!-- tutaj wrzucic fotke i ustawic ja po prawej stronie -->
30+
</div>
31+
<div class="portfolio-pages_screen">
32+
<h2>Portfolio Pages</h2>
33+
<!-- tutaj wrzucic miniaturki stron ktore zrobilem -->
34+
</div>
35+
<div class="other-social-media_screen">
36+
<h2>Check my other social-media page !</h2>
37+
<button class="button" type="button"><i class="fa fa-twitter" aria-hidden="true"></i> twitter</button>
38+
<button class="button" type="button"><i class="fa fa-github" aria-hidden="true"></i> GitHub</button>
39+
<button class="button" type="button"><i class="fa fa-linkedin-square" aria-hidden="true"></i> LinkedIn</button>
40+
<button class="button" type="button"><i class="fa fa-free-code-camp" aria-hidden="true"></i> freeCodeCamp</button>
41+
</div>
42+
<footer>
43+
<p>Copyright by K.T</p>
44+
<!-- tutaj wrzucic linki do Home About Portfolio Contact -->
45+
</footer>
46+
</div>
47+
<script src="https://use.fontawesome.com/49ec0c3c79.js"></script>
1048
</body>
1149
</html>

reset.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*{
2+
margin: 0;
3+
padding: 0;
4+
font-family: Roboto, arial;
5+
box-sizing: border-box;
6+
}

styles.css

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
body {
2+
background-color: grey;
3+
margin: 0 auto;
4+
}
5+
6+
header {
7+
display: inline-block;
8+
padding-left: 80%;
9+
padding-bottom: 40px;
10+
padding-top: 10px;
11+
align-items: center;
12+
background-color: crimson;
13+
width: 100%;
14+
position: fixed;
15+
top: 0px;
16+
17+
}
18+
19+
.portfolio_screen {
20+
background-color: bisque;
21+
}
22+
23+
.portfolio_screen h1 {
24+
font-size: 70px;
25+
font-family: monospace;
26+
text-align: center;
27+
border-bottom: 2px solid crimson;
28+
padding-bottom: 10px;
29+
margin: 0 30% 40px;
30+
text-decoration: blink;
31+
padding-top: 100px;
32+
}
33+
.portfolio_screen .buttons {
34+
text-align: center;
35+
}
36+
37+
.button {
38+
margin-bottom: 100px;
39+
font-size: 20px;
40+
color: brown;
41+
padding: 20px;
42+
width: 230px;
43+
text-align: center;
44+
transition-duration: 0.4s;
45+
text-decoration: none;
46+
overflow: hidden;
47+
cursor: pointer;
48+
border: 2px solid;
49+
border-radius: 3px;
50+
border-color: black;
51+
}
52+
.button:hover {
53+
font-size: 22px;
54+
color: white;
55+
background-color: black;
56+
text-align: center;
57+
text-decoration: none;
58+
padding: 20px;
59+
width: 230px;
60+
margin-bottom: 100px;
61+
}
62+
63+
64+
65+
.self-description_screen {
66+
background-color: aqua;
67+
height: 300px;
68+
}
69+
70+
.portfolio-pages_screen {
71+
background-color: crimson;
72+
height: 300px;
73+
}
74+
75+
.other-social-media_screen {
76+
background-color: darkorange;
77+
height: 300px;
78+
}

0 commit comments

Comments
 (0)