-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZack HTML 3.html
107 lines (96 loc) · 5.18 KB
/
Zack HTML 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="Zack HTML 3.css">
</head>
<body>
<header id="head">
<div id="title">
<h1 style="font-size: 2em;">Programming<br></h1>
<small>For a Better Future</small>
</div>
<ul id="navbar">
<li><a href=>Home</a></li>
<li><a href=>Contact</a></li>
<li><a href=>New Page 1</a></li>
<li><a href=>New Page 2</a></li>
<li><a href=>New Page 3</a></li>
<li><a href=>New Page 4</a></li>
</ul>
</header>
<div class="container">
<div class="col-3">
<div class="menu">
<h4>Main Menu</h4>
<ul class="mainmenu">
<li>Menu Item 1</li>
<li>Menu Item 2</li>
<li>Menu Item 3</li>
<li>Menu Item 4</li>
<li>Menu Item 5</li>
<li>Menu Item 6</li>
<li>Menu Item 7</li>
<li>Menu Item 8</li>
<li>Menu Item 9</li>
</ul>
</div>
<br>
<div class="block">
<h4>Block</h4>
<p>Enter block content here</p>
<br>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora illum obcaecati accusamus quaerat sunt suscipit iure tempore. Suscipit expedita qui, eligendi aliquid perspiciatis temporibus nihil, consectetur sequi esse repudiandae eum.</p>
</div>
</div>
<div class="col-9">
<div class="gallary">
<h4>Gallery</h4><hr>
<p>Programing for a Better Future The world has become extremely depended on technology. But hardly anyone takes time to think about all the hard work that has been put into creating the technology and programs. Computer programing is a vast field with many different categories. The different subcategories are desktop application programming, core programming, system programming, and programming science. Within the different categories there are subcategories. The different subcategories contain various job descriptions ranging from constructing new computer language to creating a new application such as Java. One of the main and most important categories is system programming. Programming Science is a type of advanced programing which develops computing technologies, programing languages and data mining.
</p>
</div>
<br>
<div class="others">
<div class="subscription">
<h4>Subscription</h4><br>
<P>Even though some people do not have to specialize, it would be the best option. The different specialties are algorithm design, programming languages, artificial intelligence, robotics, scientific programming, supercomputing, computer aided design, virtual reality and computer graphics. Algorithm design is constructing a specific method to mathematical process.
</P><br>
<a id="readmore1" href="">read more</a>
</div><br>
<div class="services">
<h4>Other Services</h4><br>
<p>Programming languages are our way to speak to computers. From Lisp to Go to Java, programmers have had more flexibility and productivity with high-level programming languages. Programming languages have changed and evolved throughout the history of computer science. Programmers have learned to adapt to programming languages, such as assembly language, however more programming languages are being created that give users more control. The future of programming languages will continue to contribute to the growth of computer science and understanding of computation.
</p><br>
<a id="readmore2" href="">read more</a>
</div><br>
</div>
</div>
</div>
<br><hr><br>
<form>
<label>Name</label>
<input class="input" type="text" name="name" placeholder="Enter your name">
<label>Email</label>
<input class="input" type="text" name="email" placeholder="Enter your email">
<label>Message</label>
<textarea rows="1" name="comment" placeholder="Enter Message"></textarea>
<br>
<div class="radio">
<input type="radio" id="Complaint" name="fav_language" value="Complaint">
<label for="Complaint">Complaint</label><br>
<input type="radio" id="Suggestion" name="fav_language" value="Suggestion">
<label for="Suggestion">Suggestion</label>
</div>
<button>Submit</button>
</form>
<br>
<footer class="footer">
<div class="footerContainer">
<p class="copyright">Copyright © 2014</p>
</div>
</footer>
</body>
</html>