-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (90 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tutorial 03</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="div1">
<ul class="navlist">
<li><a href="#">Tutorials</a></li>
<li><a href="#">University Work</a></li>
<li><a href="#">Web Stuff</a></li>
<li><a href="#">Social Media</a></li>
</ul>
</div>
<h1 class="h1">My Useful Links</h1>
<div class="div2">
<img class="imageTut" src="tut.png" alt="tut">
<h2 class="tut">Tutorials</h2>
</div>
<div class="tutDetails">
<dl>
<dt><a href="index.html">Tutorial 1</a></dt>
<dd>This is a link to my first tutorial,where I practiced html & CSS</dd>
</dl>
<dl>
<dt><a href="tut 02 task 2.html">Tutorial 2</a></dt>
<dd>This is a link to my second tutorial,where I practiced with List and Table</dd>
</dl>
</div>
<div class="div3">
<img class="unilogo" src="uni.png" alt="tut">
<h2 class="uni">University Work</h2>
</div>
<div class="tutDetails">
<dl>
<dt><a href="#">Blackboard</a></dt>
<dd>The VLE we use at University</dd>
</dl>
<dl>
<dt><a href="#">Timetabling</a></dt>
<dd>This is a link to my University Timetable,with all my lectures and Tutorials</dd>
</dl>
<dl>
<dt><a href="#">Web Dev Shedule</a></dt>
<dd>A link to my Web and Development module, from which Ican access all my lectures and tutorials,and check dedline dates.</dd>
</dl>
<dl>
<dt><a href="#">Student Hub</a></dt>
<dd>The Student Hub is the University Web site for current students which provides information such as new and events, and links to all the University Web system and services.</dd>
</dl>
<div class="div4">
<img class="weblogo" src="web.png" alt="web logo">
<h2 class="web">Web Stuff</h2>
</div>
<div class="webDetails">
<dl>
<dt><a href="#">MDN Web Docs</a></dt>
<dd>Online resource for Web Development Developd by the Mozilla Developer Network</dd>
</dl>
<dl>
<dt><a href="#">W3C</a></dt>
<dd>World Wide Web Consortium, which amoungst other things develops the various Web standars</dd>
</dl>
</div>
<div class="div4">
<img class="socialimg" src="social.png" alt="social photo">
<h2 class="social">Social Media</h2>
</div>
<dl>
<dt><a href="#">Twitter</a></dt>
<dd>Link to Twitter, an online microblogging site which I use to to follow what's happening in the web developer world</dd>
</dl>
<dl>
<dt><a href="#">Facebook</a></dt>
<dd>To keep in touch with family anf friends</dd>
</dl>
<dl>
<dt><a href="#">Instagram</a></dt>
<dd>For posting pictures about my life.</dd>
</dl>
<img class="arrow" src="up_arrow.png" alt="arrow logo">
<p class="back"><a href="#">Back To The Top</a></p>
<hr>
<p class="last">Last modified : 2024-06-11</p>
<p class="last"><i>Email :</i><a href="#">akila@gmail.com</a></p>
</body>
</html>