-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (104 loc) · 6.2 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
<!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">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Oswald:300,400" rel="stylesheet">
<link rel="icon" href="images/favicon.png" type="image/png" />
<link rel="shortcut icon" href="images/favicon.ico" type="images/x-icon"/>
<title>Marcos Carbonell</title>
</head>
<body>
<div class="wrapper">
<img src="images/background1.jpg" id="background" alt="background img">
<nav class="navbar">
<span>Carbonell</span>
<div class="navlinks">
<a href="#home" id="link1">Home</a>
<a href="" id="link2">Projects</a>
<a href="../about/about.html" target="_blank">About</a>
<a href="#contact" id="link3">Contact</a>
</div>
<button id="menu-toggler-link"><img src="images/menutoggler.png" alt="menu toggler" id="menu-toggler"></button>
</nav>
<div class="container">
<div class="logo" id="home">
<img src="images/CARBONELL-1-PNG2.png" id="imageLogo" alt="">
<div class="title-description">
<h6 class="name">Marcos Carbonell</h6>
<h6 class="label">Web Development & Apps</h6>
</div>
</div>
<div class="main">
<h1>Websites done right.</h1>
<p>Hey there! I'm a junior Web Developer currently living in Heidelberg , Germany. <br>
you can find more information about me <a href="../about/about.html" class="here" target="_blank">here</a>
</p>
<div class="mainButtons">
<a class="websiteButton" href="google_form/google.html" target="_blank">I need a Website<img src="images/arrow.svg" class="arrow"></a>
<a class="hireButton">I'm looking to hire<img src="images/arrow.svg" class="arrow1"></a>
</div>
</div>
</div>
<div class="webpageMiddle">
<h2 id="proyect-titel">Projects</h2>
<hr>
<div id="proyects">
<div class="pamatrans">
<a href="http:\\pamatrans.de" target='_blank'><img src="images/Mercedes-Sprinter.png" alt="PaMaTrans vehicle" id="sprinter"></a>
<a id="linkpama" href="http:\\pamatrans.de" target='_blank'><h2 class="pawel">PaMa Trans</h2></a>
<p>First Webpage we ever coded, using basic Front-End tools. HTML, CSS, JavaScript, JQuery & Bootstrap</p>
</div>
<div class="Tildea">
<img src="images/LOGO.png" alt="Tildea logo" id="tildea">
<h2 class="tildea">Tildea</h2>
<p>Tildea is a bit more ambitious proyect that me and my team
have been developing the last few months. It's a MERN application
that teaches you how to correctly write accents in Spanish.
It's still on desing phase and will be launched on december 2018.</p>
</div>
</div>
<section class="map">
<div id="map"></div>
<script src="map.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDhXLstYBXCUsYhQB75sjMZagYFVsmhK3Q&callback=initMap">
</script>
</section>
</div>
<div class="about">
<section class="personal">
<img src="images/profilepic.JPG" alt="a picture of Marcos Carbonell" id="profile-pic">
<h5 id="phone-number">+49 (176) 61256323<span id="copied">Copied!</span></h5>
<div class="communication">
<a href="https://github.com/MarkCarbonell98" target="_blank"><img src="images/github.svg" alt="github" id="github"></a>
<a href="https://www.instagram.com/14_8_thousands/" target="_blank"><img src="images/instagram.png" alt="instagram" id="instagram"></a>
<a href="https://teamtreehouse.com/marcoscarbonell" target="_blank"><img src="images/treehouse.png" alt="treehouse" id="treehouse"></a>
<a href="mailto:[email protected]?Subject=What%20can%20I%20help%20you%20with?"><img src="images/email.png" alt="email" id="logoemail"></a>
</div>
</section>
<section class="contactform">
<h2 id="contact">Contact</h2>
<form action="message">
<input type="text" name="name" id="name" placeholder="My name is" required>
<input type="email" name="email" id="email" placeholder="My email is" required>
<input type="number" name="phone number" id="phone" placeholder="My phone number is" required>
<textarea name="comment" id="comment" cols="30" rows="10" placeholder="I'd like to talk about" required></textarea>
<input class="send" type="submit" method='post'>
</form>
</section>
</div>
</div>
<footer class="footstep">
<p id="footer">© 2018 by Marcos Carbonell</p>
</footer>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>