-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython2.html
112 lines (98 loc) · 2.8 KB
/
python2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>整合式自學平台</title>
<link rel="stylesheet" href="stylespy.css" />
</head>
<body>
<!--1.導航-->
<div id="nav">
<ul class="main-menu">
<li class="first"><a href="#">登入</a></li>
<li><a href="#">介紹</a></li>
<li><a href="#">我的最愛</a></li>
<li><a href="#">排序方式</a>
<ul>
<li class="dropdown"><a href="#">由新到舊</a></li>
<li class="dropdown"><a href="#">購買數由多到少</a></li>
</ul>
</li>
</ul>
<div class="search">
<form>
<input type="text" value="SEARCH" class="text" />
<input type="submit" value="" class="bt"/>
</form>
</div>
</div>
<!--3.主體-->
<div id="main">
<div class="left">
<ul>
<li><a href="#">語言</a></li>
<li class="main-menu"><a href="#">程式</a>
<li><a href="#">人文</a></li>
<li><a href="#">攝影</a></li>
<li><a href="#">藝術</a></li>
<li><a href="#">設計</a></li>
<li><a href="#">行銷</a></li>
<li><a href="#">投資理財</a></li>
<li><a href="#">手作</a></li>
<li><a href="#">生活品味</a></li>
<li><a href="#">電子商務</a></li>
</ul>
</div>
<!--第一排-->
<div class="content">
<p>關於Python...</p>
<br />
<a href="https://www.udemy.com/course/complete-python-bootcamp/">
python零基礎入門
</a>
<br />
<a href="https://hahow.in/courses/5b9d3a6dca498a001e917383/main">
python輕鬆學會寫程式
</a>
<br />
<a href="http://moocs.nccu.edu.tw/course/123/intro">
跟著商管女孩一起寫python
</a>
<br />
<a href="https://www.runoob.com/python3/python3-tutorial.html">
python入門製作股市分析
</a>
<br />
<a href="https://medium.com/ccclub/ccclub-python-for-beginners-tutorial-244862d98c18">
python3數據分析
</a>
<br />
<a href="https://hahow.in/courses/5d428e522fb50200206226e9">
python匯率即時提醒平台
</a>
<br />
<a href="https://hahow.in/courses/597df7e2acc137070007013c/main">
python-機器學習
</a>
<br />
<a href="https://www.udemy.com/course/ccclub-python-for-beginners/">
Python 專案開發入門的十堂課
</a>
<br />
<a href="https://hahow.in/courses/58744feda8aae907000d06c0/main">
21天快速掌握Python分布式爬蟲
</a>
<br />
<a href="https://www.yottau.com.tw/course/intro/885#intro">
Python Web之Flask框架
</a>
<br />
<a href="https://www.yottau.com.tw/course/intro/710#intro">
Python游戲開發與項目實戰
</a>
<br />
<a href="https://zh.wikipedia.org/wiki/Python">
Python趣味编程|邏輯思维|快樂人生
</a>
</div>
</div>