-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (72 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
94 lines (72 loc) · 3.02 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Fonts, Bootstrap and CSS links-->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<!--Icons script-->
<script src="https://kit.fontawesome.com/42b142cdee.js" crossorigin="anonymous"></script>
<title>Build Your Landing Page!</title>
</head>
<body>
<div id="banner">
<h1>Code Your First Web Page!</h1>
<p>Try something new today!</p>
<p>
<a href="#" class="btn btn-danger btn-lg">Embark Now!</a>
</p>
</div>
<div id="intro">
<p>Coding is everywhere so let's start to understand what's going on behind a web page! This web journey can definitely change your future!</p>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<strong>HTML</strong>
<img src="images/The-Architect.png" alt="">
<h2>Call The Architect!</h2>
<p>Websites are pieces of architecture which means they have a structure. Here is where you need <b>HTML</b> to start and create this skeleton!</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<strong>CSS</strong>
<img src="images/The-Designer.png" alt="">
<h2>Make it Stylish!</h2>
<p>Imagine how ugly would be buildings made of concrete without painting the walls. With <b>CSS</b> you can embelish whatever you want on your web page!</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<strong>JAVASCRIPT</strong>
<img src="images/The-PuppetMan.png" alt="">
<h2>Bring it to Life!</h2>
<p>Users expect animations that catch their attention and make their journey on your site more enjoyable. <b>JavaScript</b> is exactly what will make things a bit more salted!</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<strong>REACT</strong>
<img src="images/The-Magician.png" alt="">
<h2>Get the Magical Vue!</h2>
<p>What make you hooked on a web page? It is what you see, it's all about the vue! You'll get the magical vue with <b>React.JS</b>that could push your work to the next level!</p>
</div>
</div>
</div>
</div>
<div id="footer">
<p>For more information, please contact our staff @The Landing Page.</p>
<ul class="list-inline">
<li><a href=""><i class="fab fa-facebook"></i></a></li>
<li><a href=""><i class="fab fa-twitter"></i></a></li>
<li><a href=""><i class="fab fa-youtube"></i></a></li>
<li><a href=""><i class="fab fa-github"></i></a></li>
</ul>
</div>
</body>
</html>