-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (78 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Portfolio</title>
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<!-- NAV BAR -->
<div id="nav-bar">
<div id="nav-body">
<ul id="nav-list">
<li class="nav-list-voice active">Home</li>
<li class="nav-list-voice">About</li>
<li class="nav-list-voice">Projects</li>
</ul>
<div id="nav-search">
<input type="text" name="website_search" placeholder="Search on website ...">
</div>
</div>
</div>
<!-- PRESENTATION -->
<div id="presentation-container">
<div id="name-presentation">
<h2 id="name">Name Surname</h2>
<p id="presentation">
Lorem ipsum dolor sit amet, consectetur adipisicing 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.
</p>
</div>
</div>
<!-- LAST PROJECTS -->
<div id="projects-container">
<h2 id="projects-container-title">Recent Projects</h2>
<div id="grid-container">
<!-- PROJECTS CONTENT -->
<!-- <div class="col">
<a href="#"> <img src="assets/img/project.png" alt="project"> </a>
<h5 class="project-title">Project Title</h5>
<p class="project-description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, <br>
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <br>
<span class="description-more" style="text-align: right;"><a href="#">More ...</a></span>
</p>
</div> -->
</div>
</div>
<!-- EMAIL FORM -->
<div id="email-container">
<h3>Send me a Mail</h3>
<form id="mail-form" action="index.html" method="post">
<p>Name</p>
<input type="text" name="name" placeholder="Your Name">
<p>Surname</p>
<input type="text" name="surname" placeholder="Your Surname">
<p>E-mail</p>
<input type="email" name="email" placeholder="Your E-mail">
<p>Email Object</p>
<textarea name="email-textarea" rows="8" cols="80" placeholder="Insert email text ..."></textarea>
<br>
<input type="submit" name="submit-email" value="Send">
<input type="reset" name="reset-email-form" value="Reset All">
</form>
</div>
<!-- FOOTER -->
<div id="footer-container">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>