-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (111 loc) · 5.09 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
<meta name="author" content="DevStar Academy">
<meta name="description" content="DevStar Academy Week 2 intermediate project - MYFOLIO website replica">
<title>MYFOLIO Website Replica</title>
<link rel="shortcut icon" href="img/favicon.ico">
<script src="https://use.fontawesome.com/9a77ea3aef.js"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<nav>
<a href="index.html">MY<span>FOLIO</span></a>
<ul>
<li><a href="#index">HOME</a></li>
<li><a href="#about">ABOUT ME</a></li>
<li><a href="#service">SERVICES</a></li>
<li><a href="#contact">CONTACT ME</a></li>
</ul>
</nav>
<header>
<h1>Lorem ipsum dolor sit iusmod tempor</h1>
<h2>INCIDIDUNT BORE</h2>
<p>Orem ipsum dolor sit amet, consectetur</p>
<img src="img/break.png" alt="section break">
<br>
<a href="#about">KNOW MORE</a>
</header>
<section id="about">
<div class="title">ABOUT ME</div>
<img src="img/sectionbreak.png" alt="section break">
<p>Lorem ipsum dolor sit amet, consectetur asipiscing elit, sed do elusmod
tempor incididunt ut labore et dolore magna aliguq. Ut enim ad minim veniam, <span>quis
nostrud exercitation ullamco</span> laboris nisi ut aliquip ex ea commodo consequat duis aute irure dolor.</p>
<div class="aboutBoxes">
<div class="aboutBox">
<i class="fa fa-lightbulb-o fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et</p>
</div>
<div class="aboutBox">
<i class="fa fa-pencil fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et</p>
</div>
<div class="aboutBox">
<i class="fa fa-cog fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et</p>
</div>
<div class="aboutBox">
<i class="fa fa-laptop fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et</p>
</div>
</div>
</section>
<section id="service">
<div class="serviceWrapper">
<div class="title">SERVICES</div>
<img src="img/sectionbreak.png" alt="section break">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do tempor incididunt ut labore et dolore manga aliqua.</p>
<div class="serviceBox">
<i class="fa fa-globe fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et dolore mag</p>
</div>
<div class="serviceBox left">
<i class="fa fa-search fa-2x"></i>
<h2>TItle goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et dolore mag</p>
</div>
<div class="serviceBox">
<i class="fa fa-clock-o fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et dolore mag</p>
</div>
<div class="serviceBox left">
<i class="fa fa-bar-chart fa-2x"></i>
<h2>Title goes here</h2>
<p>nsectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et dolore mag</p>
</div>
</div>
</section>
<section id="contact">
<div class="title">CONTACT ME</div>
<img src="img/sectionbreak.png" alt="section break">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do elusmod tempor incididunt ut labore et dolore magna aliguq.</p>
<div class="contactForm">
<label>NAME</label>
<br>
<input type="text">
<br><br><br>
<label>EMAIL ADDRESS</label>
<br>
<input type="email">
<br><br><br>
<label>MESSAGE</label>
<br><br>
<textarea rows="3"></textarea>
<br><br><br>
<button>SUBMIT</button>
</div>
</section>
<footer id="sitefooter">
<p>© MYFOLIO</p>
</footer>
</body>
</html>