-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (127 loc) · 4.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@100;300;400;500;700&display=swap"
rel="stylesheet"
/>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="https://kit.fontawesome.com/08f2822b68.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css" />
<script src="handlebars.js"></script>
<script id="templateWK" type="text/x-handlebars-template">
{{#each projects}}
<article class="work">
<div class="work_card">
<img class="image" src="{{image}}" alt="{{name}}" />
<section class="details">
<h3 class="project">{{this.project}}</h3>
<h5 class="tools">{{this.tools}}</h5>
{{#if show}}
<a href="http://{{url}}"></a>
{{else}}
<p></p>
{{/if}}
</section>
</div>
</article>
{{/each}}
</script>
<script id="templateSK" type="text/x-handlebars-template">
{{#each skills}}
<article class="skill" id='skill'>
{{#if show}}
<i class="{{tools}}"></i>
{{else}}
<p></p>
{{/if}}
</section>
</article>
{{/each}}
</script>
<title>Portfolio</title>
</head>
<body>
<div class="container">
<nav class="menu" id="menu">
<ul>
<li><a class="btn" href="#header" id="btn-header">home</a></li>
<li><a class="btn" href="#works" id="btn-works">works</a></li>
<li><a class="btn" href="#skills" id="btn-skills">skills</a></li>
<li><a class="btn" href="#contact_me" id="btn-contact_me">contact</a></li>
</ul>
</nav>
<header>
<div class="header" id="header">
<section class="titulo">
<h1>Fernando Oliveri</h1>
<h3>Web Developer</h3>
</section>
</div>
</header>
<main class="main">
<div class="photo">
<img src="img/FJORFoto.jpg" alt="photo F Oliveri" />
</div>
<section class="about_me" id="about_me">
<h2>about me</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam tempore, dolores perspiciatis ut iste illo delectus nihil laborum iusto
reiciendis!
</p>
</section>
<section class="works" id="works">
<h2>works</h2>
<div class="work" id="work"></div>
</section>
<section class="skills" id="skills">
<h2>skills</h2>
<div id="skill"></div>
</section>
<section class="contact_me" id="contact_me">
<h2>contact me</h2>
<div class="contact_form">
<form action="" class="formx" id="form">
<label for="firstname">First Name</label>
<input type="text" id="firstname" name="firstname" placeholder="first name" required />
<label for="lastname">Last Name</label>
<input type="text" id="lastname" name="lastname" placeholder="last name" required />
<label for="email">email</label>
<input type="email" id="email" name="email" placeholder="[email protected]" required />
<br />
<textarea name="message" name="message" cols="30" rows="5" placeholder="message" required></textarea>
<br />
<button type="submit" class="boton">Send</button>
<!-- <input class="boton" type="submit" value="Send" /> -->
</form>
<a href="mailto:[email protected]" id="truc">mail</a>
</div>
<div class="contact">
<h3>Fernando Oliveri</h3>
<h5>ca. Matamoros 127</h5>
<h5>San Borja, 15037</h5>
<h5>Lima - Peru</h5>
<br />
<h5>phone: +51 949 819 058</h5>
<h5>fjoliveri.wb at gmail.com</h5>
</div>
<div class="social_media">
<i class="fab fa-facebook"><a href="http://"></a></i>
<i class="fab fa-twitter"><a href="http://"></a></i>
<i class="fab fa-instagram"><a href="http://"></a></i>
<i class="fab fa-youtube"><a href="http://"></a></i>
</div>
</section>
</main>
<footer>copyright</footer>
</div>
<script src="js/Main.js"></script>
<script src="js/navbar.js"></script>
<script src="js/sendEmail.js"></script>
</body>
</html>