-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (111 loc) · 5.43 KB
/
index.html
File metadata and controls
128 lines (111 loc) · 5.43 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>First Web Site</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/cards.css">
<link rel="stylesheet" type="text/css" href="css/responsive/max-600px.css" media="(max-width: 600px)">
<link rel="stylesheet" type="text/css" href="css/responsive/min-1024px.css" media="(min-width: 1024px)">
<link rel="stylesheet" type="text/css" href="css/fonts/genericons/genericons.css" media="all" />
</head>
<body>
<div id="layout" class="x-borders">
<header>
<div>
<a id="logo" href="." title="FastTrackIT">
<img src="img/logo.png" alt="FastTrackIT" title="FastTrackIT">
</a>
<h1>Welcome to our First Web Site made @ FastTrackIT</h1>
</div>
</header>
<div id="top-menu">
<div>
<button id="secondary-toggle" class="genericon genericon-menu">Widgets</button>
<ul>
<li><a href="index.html" title="welcome home">HOME</a></li>
<li><a href="https://www.linkedin.com/in/nicolaematei" title="my personal projects" target="_blank">Projects</a></li>
<li><a href="https://www.linkedin.com/in/nicolaematei" title="about me" target="_blank">About</a></li>
<li><a href="https://www.linkedin.com/in/nicolaematei" title="contact me" target="_blank">Contact</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
</div>
</div>
<div id="content-wrapper">
<div id="left-bar">
<div id="news-widget" class="widget">
<div class="header" title="Show/Hide content">News</div>
<div class="content">
<p>
Today we created a new web site
<a id="show-info" href="#">read more</a>
<span id="more-info" style="display: none;">
made at 'Web programming' course.
We learned about HTML (Hyper Text Markup Language), CSS (Cascading Style Sheets) and JS (JavaScript)
<a id="hide-info" href="#">hide detail</a>
</span>
</p>
<p class="red-element">This is a red paragraph, it has 'red-element' class (declared in style.css)</p>
<p class="red-element">One more red paragraph</p>
<p>Normal paragraph</p>
</div>
</div>
<div id="help-widget" class="widget">
<div class="header">Help links</div>
<div class="content">
<p><a href="http://www.cssmatic.com/box-shadow" target="_blank">box-shadow generator</a></p>
<p><a href="http://www.cssmatic.com/border-radius" target="_blank">border-radius generator</a></p>
</div>
</div>
<div id="google-search" class="widget">
<div class="header">Google Search</div>
<div class="content">
<form action="https://www.google.com/search" target="_blank">
<label for="q">Keyword(s):</label>
<input type="text" name="q" id="q">
<input type="hidden" name="ie" value="utf-8">
<input type="hidden" name="oe" value="utf-8">
<input type="hidden" name="as_sitesearch" value="fasttrackit.org">
<input type="submit" value="Search">
</form>
</div>
</div>
</div>
<div id="content">
<div id="breadcrumb">HOME : welcome home</div>
<h1>Homework</h1>
<p>Write some info about you.</p>
<p>
Make this web site as you wish. Change/Add any <strong>attributes</strong> you have learned in this example.
Add/edit <strong>elements</strong> in HTML page as you wish, to create custom components in your page.
</p>
<h2>Exercises</h2>
<ol>
<li>Add new widget</li>
<li>Make sure you understand how to find any elements with:
<ul>
<li>document.getElementById('element-id')</li>
<li>document.getElementsByClassName("class-name")</li>
<li>document.getElementsByTagName("a")</li>
<li>and nested combinations of those</li>
</ul>
</li>
<li>play in FireBug to find and change some attributes (color, display, width, height, etc.) of some elements</li>
<li>Make all widgets collapsible</li>
</ol>
<p>I hope is all clear.</p>
</div>
<div class="clear"></div>
</div>
<footer>
<p>© 2015-2022 FastTrackIT. All rights reserved.</p>
</footer>
</div>
<!--<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>-->
<script src="js/lib/jquery/jquery-2.1.3.js"></script>
<script src="js/code-examples/functions-jquery.js" type="text/javascript"></script>
<script src="js/responsive.js" type="text/javascript"></script>
</body>
</html>