forked from CodeYourFuture/HTML-CSS-Coursework-Week4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (66 loc) · 2.8 KB
/
index.html
File metadata and controls
73 lines (66 loc) · 2.8 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
<title>Responsive grid project</title>
</head>
<body>
<header class="header">
<div class="header-content" >
<div class="first-header">
<div class="square"></div>
<h1>Danny Romero</h1>
</div>
<h3 class="header2">Full Stack Developer Trainee at CYF.</h3>
</div>
<div class="menu-section">
<div class="menu-toggle">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
<nav >
<ul role="navigation" class="hidden">
<li><a href="#https://www.wix.com/demone2/personal-resume">About me</a></li>
<li><a href="#https://www.wix.com/demone2/personal-resume/resume">Resume</a></li>
<li><a href="#https://www.wix.com/demone2/personal-resume/projects">Project</a></li>
<li><a href="#https://www.wix.com/demone2/personal-resume/contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="page_container">
<div class="box1"></div>
<div class="box2">
<h2>Hello Word</h2>
<h3>Welcome</h3>
<p>My name is Danny and I'm a full stack Software Engineer
and I'm looking for an opportunity in the industry
to gain experience</p>
<p>I am hard worked and my strength is teamwork and market analysis</p>
</div>
<div class="box3">
<section>
<img src="https://static.wixstatic.com/media/2e2a49_bd3a1599bc1b4265a01b2754b99b8536~mv2_d_5760_3840_s_4_2.jpeg/v1/crop/x_2703,y_43,w_2199,h_2205/fill/w_240,h_240,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/AdobeStock_230407429.jpeg" alt="Danny image">
<h2>Danny Romero</h2>
</section>
<div class="bt">
<button class="bt1"href="">Resume</button>
<button class="bt2"href="">Project</button>
</div>
</div>
<div class="social-media">
<ul>
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-linkedin"></a></li>
<li><a href="#" class="fa fa-instagram"></a></li>
</ul>
</div>
</main>
</body>
</html>