-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>Landing Page</h1>
<ul>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</ul>
</div>
<div class="hero">
<div>
<h1>The Odin Project Foundations</h1>
<p class="secondary-text">
This is my first project using HTML and CSS to build
fully webpage from scratch after learning flexbox to align items.
</p>
<button>SignUp</button>
</div>
<img src="./img/top.svg" alt="Odin project logo">
</div>
<h1 id="title">Tools Used to build this webpage!</h1>
<div class="boxes">
<div class="item">
<img src="./img/html.svg" alt="HTML logo">
<div class="text">HTML5</div>
</div>
<div class="item">
<img src="./img/css-3.svg" alt="CSS logo">
<div class="text">CSS3</div>
</div>
<div class="item">
<img src="./img/google.svg" alt="google logo">
<div class="text">Google</div>
</div>
<div class="item">
<img src="./img/webstorm.svg" alt="Webstorm logo">
<div class="text">Webstorm</div>
</div>
</div>
<div class="quote-text">
<p id="main-text">
<em>In some ways, programming is like painting. You start with a blank canvas and certain basic raw materials.
You use a combination of science, art, and craft to determine what to do with them.</em>
</p>
<p id="quoted">- Andrew Hunt</p>
</div>
<div class="reference">
<div class="container">
<h3>Learn Web Development today!</h3>
<p>Visit Odin Project and start your jorney to become A web developer</p>
<div class="button">
<button>Visit!</button>
</div>
</div>
</div>
<div class="footer">
Copyright © The Odin project 2022
</div>
</body>
</html>