-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkshop.html
More file actions
111 lines (94 loc) · 4.41 KB
/
Copy pathworkshop.html
File metadata and controls
111 lines (94 loc) · 4.41 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
<!DOCTYPE html>
<html lang="en">
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css"/>
<style>
body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif}
</style>
<body class="w3-light-grey w3-content" style="max-width:1600px;">
<section id="top">
<div class="w3-top w3-bar w3-black ">
<div class="navlogo">
<a href="#top" class="w3-bar-item w3-button w3-mobile" style="font-size: 17px;">Home</a></div>
<div class="navlink">
<a href="#aboutme" class="w3-bar-item w3-button w3-mobile" style="font-size: 17px;">About</a>
<a href="#contact" class="w3-bar-item w3-button w3-mobile" style="font-size: 17px;">Contact</a>
</div>
</div>
</section>
<section id="aboutme">
<!-- About section -->
<div class="w3-container w3-dark-grey w3-center w3-text-light-grey w3-padding-32" id="about">
<h4><b>About Me</b></h4>
<img src="/w3images/avatar_hat.jpg" alt="Me" class="w3-image w3-padding-32" width="600" height="650">
<div class="w3-content w3-justify" style="max-width:600px">
<h4>My Name</h4>
<p>Some text about me. I love taking photos of PEOPLE. I am lorem ipsum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<p>mail: example@example.com</p>
<p>tel: 5353 35531</p>
<hr class="w3-opacity">
<h4 class="w3-padding-16">Technical Skills</h4>
<p class="w3-wide">Photography</p>
<div class="w3-white">
<div class="w3-container w3-padding-small w3-center w3-grey" style="width:95%">95%</div>
</div>
<p class="w3-wide">Web Design</p>
<div class="w3-white">
<div class="w3-container w3-padding-small w3-center w3-grey" style="width:85%">85%</div>
</div>
<p class="w3-wide">Photoshop</p>
<div class="w3-white">
<div class="w3-container w3-padding-small w3-center w3-grey" style="width:80%">80%</div>
</div>
<p><button class="w3-button w3-light-grey w3-padding-large w3-margin-top w3-margin-bottom">Download Resume</button></p>
<hr class="w3-opacity">
</div>
</div>
</section>
<!-- Contact section -->
<section id="contact">
<div class="w3-container w3-dark-grey linkshare7 w3-center" >
<div class="w3-col s4 w3-quarter" style="padding: 30px;width: 300px;">
<div class="w3-card-4 w3-hover-shadow w3-white" >
<div class=" w3-center">
<a href="#" class="linkshare"><i class="fa fa-github"></i></a>
</div>
</div>
</div>
<div class="w3-col s4 w3-quarter" style="padding: 30px;width: 300px;">
<div class="w3-card-4 w3-hover-shadow w3-white">
<div class=" w3-center">
<a href="#" class="linkshare"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="w3-col s4 w3-quarter" style="padding: 30px;width: 300px;">
<div class="w3-card-4 w3-hover-shadow w3-white">
<div class=" w3-center">
<a href="#" class="linkshare"><i class="fa fa-facebook "></i></a>
</div>
</div>
</div>
<div class="w3-col s4w3-quarter" style="padding: 30px;width: 300px;">
<div class="w3-card-4 w3-hover-shadow w3-white">
<div class=" w3-center">
<a href="#" class="linkshare"><i class="fa fa-instagram "></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<div class="w3-black w3-center w3-padding-24">Developed by : <a href="top" target="_blank" class="w3-hover-opacity" style="font-size: 20px;color: aliceblue;">CESC</a></div>
<!-- End page content -->
</div>
</body>
</html>